GetVersion.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  FileName    :   GetVersion.h
  4. //  Version     :   1.0
  5. //  Creater     :   Cheng Bitao
  6. //  Date        :   2001-11-20 4:54:50
  7. //  Comment     :   
  8. //
  9. //////////////////////////////////////////////////////////////////////////////////////
  10. #ifndef _GETVERSION_H_
  11. #define _GETVERSION_H_ 1
  12. int GetVersionStringFromInt(
  13.     int nMajorVersion, int nMinorVersion, 
  14.     char szVersion[], int nVersionLen
  15. );
  16. int GetVersionFromString(
  17.     const char cszVersion[], 
  18.     unsigned *puMajorVersion, 
  19.     unsigned *puMinorVersion
  20. );
  21. int GetFileVersion(
  22.     const char cszFileName[], 
  23.     DWORD *pdwProductVersionMS, 
  24.     DWORD *pdwProductVersionLS
  25. );
  26. int GetVersion(const char cszFileName[], char *pszVersion, int nVersionSize);
  27. int GetProgramVersion(CString &sVersion);
  28. #endif  // _GETVERSION_H_