home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 275 / DPCS0111DVD.ISO / Toolkit / Audio-Visual / VirtualDub / Source / VirtualDub-1.9.10-src.7z / src / h / vd2 / system / w32assist.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-14  |  3.6 KB  |  96 lines

  1. //    VirtualDub - Video processing and capture application
  2. //    System library component
  3. //    Copyright (C) 1998-2004 Avery Lee, All Rights Reserved.
  4. //
  5. //    Beginning with 1.6.0, the VirtualDub system library is licensed
  6. //    differently than the remainder of VirtualDub.  This particular file is
  7. //    thus licensed as follows (the "zlib" license):
  8. //
  9. //    This software is provided 'as-is', without any express or implied
  10. //    warranty.  In no event will the authors be held liable for any
  11. //    damages arising from the use of this software.
  12. //
  13. //    Permission is granted to anyone to use this software for any purpose,
  14. //    including commercial applications, and to alter it and redistribute it
  15. //    freely, subject to the following restrictions:
  16. //
  17. //    1.    The origin of this software must not be misrepresented; you must
  18. //        not claim that you wrote the original software. If you use this
  19. //        software in a product, an acknowledgment in the product
  20. //        documentation would be appreciated but is not required.
  21. //    2.    Altered source versions must be plainly marked as such, and must
  22. //        not be misrepresented as being the original software.
  23. //    3.    This notice may not be removed or altered from any source
  24. //        distribution.
  25.  
  26. #ifndef f_VD2_SYSTEM_W32ASSIST_H
  27. #define f_VD2_SYSTEM_W32ASSIST_H
  28.  
  29. #include <windows.h>
  30.  
  31. #include <vd2/system/VDString.h>
  32.  
  33. inline bool VDIsWindowsNT() {
  34. #ifdef _M_AMD64
  35.     return true;
  36. #else
  37.     static bool is_nt = !(GetVersion() & 0x80000000);
  38.  
  39.     return is_nt;
  40. #endif
  41. }
  42.  
  43. // useful constants missing from the Platform SDK
  44.  
  45. enum {
  46. #ifdef _M_AMD64
  47.     MENUITEMINFO_SIZE_VERSION_400A = sizeof(MENUITEMINFOA),
  48.     MENUITEMINFO_SIZE_VERSION_400W = sizeof(MENUITEMINFOW)
  49. #else
  50.     MENUITEMINFO_SIZE_VERSION_400A = (offsetof(MENUITEMINFOA, cch) + sizeof(UINT)),
  51.     MENUITEMINFO_SIZE_VERSION_400W = (offsetof(MENUITEMINFOW, cch) + sizeof(UINT))
  52. #endif
  53. };
  54.  
  55. // helper functions
  56.  
  57. bool        VDIsForegroundTaskW32();
  58.  
  59. LPVOID        VDConvertThreadToFiberW32(LPVOID parm);
  60. void        VDSwitchToFiberW32(LPVOID fiber);
  61.  
  62. int            VDGetSizeOfBitmapHeaderW32(const BITMAPINFOHEADER *pHdr);
  63. void        VDSetWindowTextW32(HWND hwnd, const wchar_t *s);
  64. void        VDSetWindowTextFW32(HWND hwnd, const wchar_t *format, ...);
  65. VDStringW    VDGetWindowTextW32(HWND hwnd);
  66. void        VDAppendMenuW32(HMENU hmenu, UINT flags, UINT id, const wchar_t *text);
  67. void        VDCheckMenuItemByCommandW32(HMENU hmenu, UINT cmd, bool checked);
  68. void        VDCheckRadioMenuItemByCommandW32(HMENU hmenu, UINT cmd, bool checked);
  69. void        VDEnableMenuItemByCommandW32(HMENU hmenu, UINT cmd, bool checked);
  70. VDStringW    VDGetMenuItemTextByCommandW32(HMENU hmenu, UINT cmd);
  71. void        VDSetMenuItemTextByCommandW32(HMENU hmenu, UINT cmd, const wchar_t *text);
  72.  
  73. LRESULT        VDDualCallWindowProcW32(WNDPROC wp, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  74. LRESULT        VDDualDefWindowProcW32(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  75.  
  76. EXECUTION_STATE VDSetThreadExecutionStateW32(EXECUTION_STATE esFlags);
  77.  
  78. bool        VDSetFilePointerW32(HANDLE h, sint64 pos, DWORD dwMoveMethod);
  79. bool        VDGetFileSizeW32(HANDLE h, sint64& size);
  80.  
  81. #if !defined(_MSC_VER) || _MSC_VER < 1300
  82.     HMODULE        VDGetLocalModuleHandleW32();
  83. #else
  84.     extern "C" IMAGE_DOS_HEADER __ImageBase;
  85.     inline HMODULE VDGetLocalModuleHandleW32() {
  86.         return (HINSTANCE)&__ImageBase;
  87.     }
  88. #endif
  89.  
  90. bool        VDDrawTextW32(HDC hdc, const wchar_t *s, int nCount, LPRECT lpRect, UINT uFormat);
  91.  
  92. bool        VDPatchModuleImportTableW32(HMODULE hmod, const char *srcModule, const char *name, void *pCompareValue, void *pNewValue, void *volatile *ppOldValue);
  93. bool        VDPatchModuleExportTableW32(HMODULE hmod, const char *name, void *pCompareValue, void *pNewValue, void *volatile *ppOldValue);
  94.  
  95. #endif
  96.