BaseFunction.cpp
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "basefunction.h"
  3. void GetCurrentPath(char out_pathName[MAX_PATH])
  4. {
  5. memset(out_pathName, 0, sizeof(char) * MAX_PATH);
  6. ::GetModuleFileName(NULL,out_pathName, MAX_PATH);
  7. for (int i = strlen(out_pathName) - 1; i >= 0; i--)
  8. {
  9. if (out_pathName[i] == '\' || out_pathName[i] == ':')
  10. {
  11. out_pathName[i+1] = 0;
  12. break;
  13. }
  14. }
  15. }
  16. BOOL IsWin9x(void)
  17. {
  18. DWORD dwVersion =::GetVersion();
  19. if (dwVersion < 0x80000000)              // Windows NT/2000, Whistler
  20. return FALSE;
  21. else
  22. return TRUE;
  23. }