?? tablelookup.h
字號:
//
// TableLookup.h
//
#ifndef TABLE_LOOKUP_H
#define TABLE_LOOKUP_H
typedef struct
{
BYTE * pInputVar;
int multiplier;
} TABLE_LOOKUP_INPUT;
typedef struct
{
TABLE_LOOKUP_INPUT const * InputList;
BYTE const * LookUpTable;
BYTE InputListCount;
BYTE LookUpTableSize;
} TABLE_LOOKUP_PB;
BYTE TableLookUp( TABLE_LOOKUP_PB const *);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -