stat_s.h

来自「自己动手写操作系统源代码,不可多得的代码」· C头文件 代码 · 共 26 行

H
26
字号
//***********************************************************************/
//    Author                    : Garry
//    Original Date             : Oct,22 2006
//    Module Name               : STAT_S.H
//    Module Funciton           : 
//                                Countains statistics thread's definition and
//                                implementation code.
//                                This is a kernel thread.
//    Last modified Author      :
//    Last modified Date        :
//    Last modified Content     :
//                                1.
//                                2.
//    Lines number              :
//***********************************************************************/

extern __KERNEL_THREAD_OBJECT*  lpStatKernelThread;  //Global variables.

DWORD StatThreadRoutine(LPVOID lpData); //Entry point of the statistics thread.

#define STAT_MSG_SHOWSTATINFO    0x1001
#define STAT_MSG_GETSTATINFO     0x1002
#define STAT_MSG_TERMINAL        0x1003
#define STAT_MSG_LISTDEV         0x1004

⌨️ 快捷键说明

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