mmplist.h
来自「用c++变得一个测量财富的+游戏」· C头文件 代码 · 共 46 行
H
46 行
/*\t*******************************************************************/
/* Creation Date ....... Thu 05-20-1993 11:52:51 */
/* Filename ........... mmplist.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 */
/* */
/* */
/* Matthew Ratcliff's linked list class definitions. There are NO */
/* INHERENT LIMITATIONS to this doubly linked list class. Can't say */
/* that about most other link list functions provided by Microsoft & */
/* Borland libraries. */
/*\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 _MMPLIST_H_
#define _MMPLIST_H_
typedef struct
{
long size;
void *body;
} MMP_DATA_TY;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?