📄 mmglist.h
字号:
/*\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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -