?? tplex.h
字號:
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -