StdAfx.h
上传用户:jstlsd
上传日期:2007-01-13
资源大小:186k
文件大小:1k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------
  2. //
  3. // stdafx.h
  4. //
  5. // SUBSYSTEM:   Hook system
  6. //
  7. // MODULE:      Hook server / Common header
  8. //
  9. //             
  10. // AUTHOR: Ivo Ivanov
  11. // DATE: 2001 December v1.00
  12. //
  13. //---------------------------------------------------------------------------
  14. #if !defined(_STDAFX_H_)
  15. #define _STDAFX_H_
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19. //
  20. // Exclude rarely-used stuff from Windows headers
  21. //
  22. #define VC_EXTRALEAN
  23. #include "..CommonCommon.h"
  24. #ifdef UNICODE
  25. //
  26. // MFC UNICODE applications use wWinMainCRTStartup as the entry point.
  27. // For more details see Q125750
  28. //
  29. #pragma comment(linker, "/ENTRY:wWinMainCRTStartup")
  30. #else
  31. #pragma comment(linker, "/ENTRY:WinMainCRTStartup")
  32. #endif // #ifdef UNICODE
  33. #include <afxwin.h>         // MFC core and standard components
  34. //{{AFX_INSERT_LOCATION}}
  35. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  36. #endif // !defined(_STDAFX_H_)
  37. //----------------------------End of the file -------------------------------