?? ktmsg.cpp
字號:
//***********************************************************************/
// Author : Garry
// Original Date : 2004-07-05
// Module Name : ktmsg.cpp
// Module Funciton :
// This module countains kernal thread message
// implementation code.
// Last modified Author :
// Last modified Date :
// Last modified Content :
// 1.
// 2.
// Lines number :
//***********************************************************************/
#ifndef __STDAFX_H__
#include "StdAfx.h"
#endif
__THREAD_MSG_QUEUE::__THREAD_MSG_QUEUE()
{
LPVOID pStartAddress = NULL;
DWORD dwSize = 0L;
pStartAddress = (LPVOID)&this->ktmsg[0];
dwSize = sizeof(__KTHREAD_MSG) * MAX_KTHREAD_MSG_NUM;
MemZero(pStartAddress,dwSize);
this->dwCurrentMsgNum = 0L;
this->dwHeader = 0L;
this->dwTrial = 0L;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -