mmglist.h
来自「用c++变得一个测量财富的+游戏」· C头文件 代码 · 共 43 行
H
43 行
/*\t*******************************************************************/
/* Creation Date ....... Thu 05-20-1993 11:52:51 */
/* Filename ........... mmglist.h */
/* Project ............. Memory Management Utilities */
/* Author ............. Matthew J. W. Ratcliff */
/* Language ........... C++ */
/* Operating System ... DOS/Windows */
/* Processor .......... MMU */
/* Function: Constants and structures for mmulist.cpp */
/* Group private. */
/* */
/*\t*******************************************************************/
/*\r********************************************************************
** Revision History
***********************************************************************/
/*
Date By Change Description
dd-mmm-yy nnn text
--------- ---- -----------------------------------------------
20-MAY-93 MJWR Define constants and strucs for linked list pkg.
**\r*/
/*\m********************************************************************
** Definitions
***********************************************************************/
#ifndef _MMGLIST_H_
#define _MMGLIST_H_
typedef struct mmlref
{
struct mmlref *prev;
struct mmlref *next;
MMP_DATA_TY buf;
} MMG_LLIST_TY;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?