log_file.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:2k
源码类别:

打印编程

开发平台:

Visual C++

  1. #ifndef __LOG_FILE_H__GLD7WV1ZA90SDPH4V__
  2. #define __LOG_FILE_H__GLD7WV1ZA90SDPH4V__
  3. #ifndef _CRT_SECURE_NO_DEPRECATE
  4. #define _CRT_SECURE_NO_DEPRECATE
  5. #endif 
  6. #include <windows.h>
  7. #include <stdio.h>
  8. #include <TCHAR.h>
  9. #include <limits.h>
  10. #define CPU_CONFIGURATION_KEY TEXT("HARDWARE\DESCRIPTION\System\CentralProcessor\0")
  11. #define IE_VERSION_KEY TEXT("Software\Microsoft\Internet Explorer\")
  12. #define WX_NT_LOCALE_INFO TEXT(".DEFAULT\Control Panel\International\")
  13. #define W9X_LOCALE_INFO TEXT("Control Panel\Desktop\ResourceLocale")
  14. int  init_log( LPCTSTR ID, HINSTANCE hinst[], DWORD instSize);
  15. int  write_log( unsigned int level, LPCTSTR prefix, LPCTSTR format, ... );
  16. //int  write_log( unsigned int level, const char* prefix, const char* format, ... );
  17. extern int  create_log(LPCTSTR ID, unsigned int level );
  18. extern int  delete_log(LPCTSTR ID);
  19. extern unsigned int  get_log_level( );
  20. extern LPCTSTR  convert_to_hex(LPBYTE str,size_t size);
  21. typedef enum tagWINDOWS_VERSIONS {_UNKNOWN = 0,_W95 = 1,_W98 = 2,_WME = 3,_WNT = 4,_W2000 = 5,_WXP = 6,_W2003 = 7,_WVISTA = 8} WINDOWS_VERSIONS;
  22. typedef LANGID ( *GetSystemDefaultUILanguage_dll)(void);
  23. extern WINDOWS_VERSIONS  _get_windows_version();
  24. extern LPCTSTR  _get_windows_platform_info();
  25. extern void  _get_module_version(HMODULE hModule, LPCTSTR moduleName, LPTSTR fileVersion, LPTSTR fullPath, LPTSTR description, LPTSTR productName, LPTSTR productVersion, LPTSTR copyright);
  26. extern LPCTSTR  _get_system_memory_info();
  27. extern LPCTSTR  _get_processor_info();
  28. extern LPCTSTR  _get_iexplorer_info();
  29. extern LPCTSTR  _get_windows_locale_info();
  30. #if _MSC_VER < 1400
  31. int  _stprintf_s(LPTSTR dstStr, size_t dstStrSize, LPCTSTR formatStr, ...);
  32. int  _vstprintf_s(LPTSTR dstStr, size_t dstStrSize, LPCTSTR formatStr, va_list argList);
  33. int  _tcscpy_s(LPTSTR dstStr, size_t dstStrSize, LPCTSTR srcStr);
  34. int  strcpy_s(char* dstStr, size_t dstStrSize, const char* srcStr);
  35. int  _tcscat_s(LPTSTR dstStr, size_t dstStrSize, LPCTSTR srcStr);
  36. int  _itot_s(int val, LPTSTR dstStr, size_t dstStrSize, int radix);
  37. int  _stscanf_s();
  38. int memcpy_s( LPVOID dstBuff, size_t dstSize, const LPVOID srcBuff, size_t srcSize );
  39. #endif
  40. #ifndef ARRAYSIZE
  41. #define ARRAYSIZE( a ) (( NULL != a )?(sizeof(a)/sizeof(a[0])):0)
  42. #endif
  43. #ifndef ARRSIZE
  44. #define ARRSIZE( a ) (( NULL != a )?(sizeof(a)/sizeof(a[0])):0)
  45. #endif
  46. #endif __LOG_FILE_H__GLD7WV1ZA90SDPH4V__