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

打印编程

开发平台:

Visual C++

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