Utils_Util.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:1k
源码类别:

OpenGL

开发平台:

Windows_Unix

  1. #ifndef __utils_util_h__
  2. #define __utils_util_h__
  3. #include <windows.h>
  4. #pragma warning (disable:4786) // Disable the STL debug information warnings
  5. #pragma warning (disable:4172) // Disable "returning address of local variable or temporary"
  6. #include <stdio.h>
  7. //#include <stdlib.h>
  8. //#include <string.h>
  9. #include "utils_unzip.h"
  10. //#include "utils_jpeg.h"
  11. //#include <math.h>
  12. //#include <setjmp.h>
  13. //#include <assert.h>
  14. //#include <vector>
  15. //#include <string>
  16. //#include <map>
  17. //#include <limits.h>
  18. #ifndef MAX_PATH
  19. #define MAX_PATH PATH_MAX
  20. #endif
  21. namespace mods2
  22. {
  23. bool  Init();
  24. bool  load(char *file);
  25. void Free();
  26. void Play();
  27. void Stop();
  28. int GetTime();
  29. }
  30. /*
  31. namespace mods
  32. {
  33.     extern bool            Init();
  34.     extern bool            load(char *file);
  35.     extern void            Free();
  36.     extern char            *CGetTime();
  37.     extern DWORD           DGetTime();
  38.     extern float           GetCPU();
  39. }
  40. */
  41. namespace utils_util
  42. {
  43.     const char *    set_search_path(const char * path);
  44.     const char *    get_search_path();
  45.     bool            findfile(const char * filename, int size, char * pathname);
  46. }
  47. #endif