Hook.h
上传用户:aokegd
上传日期:2009-12-14
资源大小:1276k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // Hook.h : main header file for the HOOK DLL
  2. //
  3. #if !defined(AFX_HOOK_H__AEBFF705_C93A_11D5_B7D6_0080C82BE86B__INCLUDED_)
  4. #define AFX_HOOK_H__AEBFF705_C93A_11D5_B7D6_0080C82BE86B__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h" // main symbols
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CHookApp
  14. // See Hook.cpp for the implementation of this class
  15. //
  16. class CHookApp : public CWinApp
  17. {
  18. public:
  19. CHookApp();
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CHookApp)
  23. public:
  24. virtual BOOL InitInstance();
  25. virtual int ExitInstance();
  26. //}}AFX_VIRTUAL
  27. //{{AFX_MSG(CHookApp)
  28. // NOTE - the ClassWizard will add and remove member functions here.
  29. //    DO NOT EDIT what you see in these blocks of generated code !
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. LRESULT CALLBACK KeyboardProc(int nCode,WPARAM wParam, LPARAM lParam);
  34. BOOL __declspec(dllexport)__stdcall  AddHotkey(HWND,UCHAR key,UCHAR mask);
  35. BOOL __declspec(dllexport)__stdcall  DeleteHotkey(HWND,UCHAR key,UCHAR mask);
  36. BOOL InitHotkey();
  37. BOOL UnInit();
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_HOOK_H__AEBFF705_C93A_11D5_B7D6_0080C82BE86B__INCLUDED_)