?? klocker.h
字號:
#ifndef __KLOCKER_H
#define __KLOCKER_H
#ifndef __TEST_WIN32
extern "C"
{
#include "ntddk.h"
}
#endif //__TEST_WIN32
class KLocker;
class KSynchroObject;
//**************************************************************************//
class KLocker
{
public:
KLocker(KSynchroObject* pSynchroObject);
virtual ~KLocker();
protected:
private:
KLocker(const KLocker&);
KLocker& operator=(const KLocker& right);
private:
KSynchroObject* m_pSynchroObject;
#ifndef __TEST_WIN32
KIRQL m_OldIrql;
#endif //__TEST_WIN32
};
#endif //__KLOCKER_H
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -