umem.h

来自「花了很长时间找了这么多c语言的编译器」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef _MEM_H_
#define _MEM_H_
/*
 * EMS mem control type
 */
#define MAX_EMS_READWRITE 16384

typedef struct {
	BYTE *address;
	long size;
} EMSMEM;

/*
 * Linked list type.  Used for filenames, module number list, segment lists
 */
typedef struct _list_ {
    struct _list_ *link;		/* Link to next element */
		void *data;							/* Generic data */
} LIST;

/* Hash table record definition, all entries in a hash table must be
 * structures with the first two elements as given because hash table
 * entries are sometimes handled generically */

typedef struct _hashrec_ {
   struct _hashrec_ *link;	/* Link to next element in list */
   char *key;	/* Full key */
} HASHREC;

#include "umem.p"

#endif /* _MEM_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?