oshelper.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:3k
源码类别:

VC书籍

开发平台:

Visual C++

  1. // VirtualDub - Video processing and capture application
  2. // Copyright (C) 1998-2001 Avery Lee
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. #ifndef f_OSHELPER_H
  18. #define f_OSHELPER_H
  19. #include <windows.h>
  20. void Draw3DRect(HDC hDC, LONG x, LONG y, LONG dx, LONG dy, BOOL inverted);
  21. HKEY OpenConfigKey(const char *szKeyName);
  22. HKEY CreateConfigKey(const char *szKeyName);
  23. BOOL DeleteConfigValue(const char *szKeyName, const char *szValueName);
  24. BOOL QueryConfigString(const char *szKeyName, const char *szValueName, char *lpBuffer, int cbBuffer);
  25. DWORD QueryConfigBinary(const char *szKeyName, const char *szValueName, char *lpBuffer, int cbBuffer);
  26. BOOL QueryConfigDword(const char *szKeyName, const char *szValueName, DWORD *lpdwData);
  27. BOOL SetConfigString(const char *szKeyName, const char *szValueName, const char *lpBuffer);
  28. BOOL SetConfigBinary(const char *szKeyName, const char *szValueName, const char *lpBuffer, int cbBuffer);
  29. BOOL SetConfigDword(const char *szKeyName, const char *szValueName, DWORD dwData);
  30. //NFJ
  31. void ticks_to_str(char *dst, DWORD ticks);
  32. void HelpSetPath();
  33. const char *HelpGetPath();
  34. void HelpShowHelp(HWND hwnd);
  35. void HelpContext(HWND hwnd, DWORD helpID);
  36. void HelpPopup(HWND hwnd, DWORD helpID);
  37. void HelpPopupByID(HWND hwnd, DWORD ctrlID, const DWORD *lookup);
  38. __int64 MyGetDiskFreeSpace(const char *lpRoot);
  39. const char *SplitPathName(const char *path);
  40. inline char *SplitPathName(char *path) { return const_cast<char *>(SplitPathName(const_cast<const char *>(path))); }
  41. const char *SplitPathExt(const char *path);
  42. inline char *SplitPathExt(char *path) { return const_cast<char *>(SplitPathExt(const_cast<const char *>(path))); }
  43. char *SplitPathRoot(char *dst, const char *path);
  44. char *MergePath(char *path, const char *fn);
  45. bool IsFilenameOnFATVolume(const char *pszFilename);
  46. void LaunchURL(const char *pURL);
  47. class CPUUsageReader {
  48. public:
  49. CPUUsageReader();
  50. ~CPUUsageReader();
  51. int read();
  52. private:
  53. bool fNTMethod;
  54. HKEY hkeyKernelCPU;
  55. unsigned __int64 kt_last;
  56. unsigned __int64 ut_last;
  57. unsigned __int64 st_last;
  58. };
  59. #endif