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

钩子与API截获

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------
  2. //
  3. // Common.h
  4. //
  5. // SUBSYSTEM:   Hook system
  6. //
  7. // MODULE:      Hook tool / Hook server    
  8. //
  9. // DESCRIPTION: Common header 
  10. //              
  11. // 
  12. //             
  13. // AUTHOR: Ivo Ivanov (ivopi@hotmail.com)
  14. // DATE: 2001 December v1.00
  15. //
  16. //---------------------------------------------------------------------------
  17. #if !defined(_COMMON_H_)
  18. #define _COMMON_H_
  19. #if _MSC_VER > 1000
  20. #pragma once
  21. #endif // _MSC_VER > 1000
  22. // 'identifier' : identifier was truncated to 'number' 
  23. // characters in the debug information
  24. #pragma warning(disable:4786)
  25. //---------------------------------------------------------------------------
  26. //
  27. // Includes
  28. //
  29. //---------------------------------------------------------------------------
  30. #ifndef _AFXDLL
  31. #include <windows.h>
  32. #endif
  33. #endif // !defined(_COMMON_H_)
  34. //--------------------- End of the file -------------------------------------