tplex.h

来自「包中TMap」· C头文件 代码 · 共 18 行

H
18
字号
#ifndef __TPlex_H__
#define __TPlex_H__
	
#include "TypeDef.h"

struct TPlex     // warning variable length structure
{
	TPlex * pNext;
	void* data() { return this+1; };

	static TPlex * Create( TPlex *& head, TUINT nMax, TUINT cbElement );
			// like 'calloc' but no zero fill
			// may throw memory exceptions

	void FreeDataChain();       // free this one and links
};
#endif //__TPlex_H__

⌨️ 快捷键说明

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