?? dev.h
字號:
/* * Structure of a device handler table entry. */struct dev { int inuse; /* In use flag */ int (*openfnc)(); int (*closefnc)(); int (*stratfnc)(); /* Block devs only */ int (*rd_fnc)(); /* Char devs only */ int (*wr_fnc)(); /* Char devs only */ int (*sig_fnc)(); /* Signal device (interrupt) */};# define NULLDEV (( int (*)()) '\0')# define ioctlfnc stratfnc/* * Mention device switches. */extern struct dev bdevsw[];extern struct dev cdevsw[];
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -