?? pnl.h
字號:
#ifndef __PNL_H__
#define __PNL_H__
#define U_QMAX 1024
#define F_QMAX 128
typedef struct
{
void(*calc)(void*);
unsigned rf;
unsigned rul;
unsigned rudc;
unsigned run;
unsigned f;
unsigned ul_max;
unsigned udc;
}PNL;
#define PNL_DEFAULTS { \
(void(*)(void*))pnl_calc,\
50, \
180, \
310, \
0 , \
}
typedef PNL *PNL_Handle;
void pnl_calc(PNL_Handle);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -