underlyingapi.h 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //////////////////////////////////////////////////////////////////////////
  2. // 基础api函数的定义;
  3. #ifndef __UNDERLYING_API_20150817__
  4. #define __UNDERLYING_API_20150817__
  5. #include "basetype.h"
  6. #include <windows.h>
  7. #include <Winnt.h>
  8. #include <strsafe.h>
  9. #include <shlwapi.h>
  10. #include <gdiplus.h>
  11. using namespace Gdiplus;
  12. #pragma comment(lib, "gdiplus.lib")
  13. #include <Winnetwk.h>
  14. #pragma comment(lib,"Mpr.lib")
  15. #include <comutil.h>
  16. #pragma comment(lib,"comsuppw.lib")
  17. namespace underlyingapi
  18. {
  19. typedef struct __OS_VER_INFO__
  20. {
  21. BOOL bIs64Bit;
  22. TCHAR szOSVerName[256];
  23. DWORD dwMajorVersion; // 系统主版本号;
  24. DWORD dwMinorVersion; // 系统次版本号;
  25. WORD wProductType; // 系统类型;
  26. __OS_VER_INFO__()
  27. {
  28. bIs64Bit = FALSE;
  29. ZeroMemory(szOSVerName, MAX_PATH);
  30. dwMajorVersion = 0;
  31. dwMinorVersion = 0;
  32. wProductType = 0;
  33. }
  34. }OSVerInfo,*pOSVerInfo;
  35. extern AFX_API_EXPORT BOOL GetFilePath(TCHAR *FilePath, HWND hParentWnd, TCHAR* InstructionString, UINT ulFlags);
  36. extern AFX_API_EXPORT BOOL extmerge(IN CONST TString& ext1, IN CONST TString& ext2, IN TString &merge);
  37. extern AFX_API_EXPORT INT iscorrectext(IN const TString &fext, OUT TString* lpMistakenExt = NULL);
  38. extern AFX_API_EXPORT BOOL IsStringExist(IN CString& str, IN CStringArray &tagAry);
  39. extern AFX_API_EXPORT BOOL IsStringExist(IN TString& str, IN STR_VEC &tagVt);
  40. extern AFX_API_EXPORT BOOL IsStringExistNoCase(IN CString& str, IN CStringArray &tagAry);
  41. extern AFX_API_EXPORT BOOL IsStringExistNoCase(IN CONST TString& str, IN STR_VEC &tagVt);
  42. extern AFX_API_EXPORT TString lowercase(IN const TString &Str);
  43. extern AFX_API_EXPORT TString uppercase(IN const TString &Str);
  44. extern AFX_API_EXPORT int match(IN CONST TString &sExt, IN CONST TString &sFile);
  45. extern AFX_API_EXPORT void GetDirveInfo();
  46. extern AFX_API_EXPORT void Splitpath(IN CONST TCHAR *path, IN TCHAR * drive, IN size_t driveNumberOfElements, IN TCHAR * dir, IN size_t dirNumberOfElements, IN CONST int &nTimes);
  47. extern AFX_API_EXPORT BOOL CreateDirectoryEx(IN LPCTSTR lpNewDirectory);
  48. extern AFX_API_EXPORT BOOL OpenFloder(IN STR_VEC &vtFiles,IN LPCTSTR lpFilter = NULL);
  49. extern AFX_API_EXPORT BOOL OpenFloder(IN CStringArray &vtFiles,IN LPCTSTR lpFilter = NULL);
  50. extern AFX_API_EXPORT BOOL IsValidpath(IN CONST TString &strPath);
  51. //////////////////////////////////////////////////////////////////////////
  52. extern AFX_API_EXPORT int GetEncoderClsid(IN CONST WCHAR* format, OUT CLSID* pClsid);
  53. extern AFX_API_EXPORT BOOL SaveImg2newfile(IN Image* pImg, IN CString strNewfile, IN ULONG uQuality);
  54. extern AFX_API_EXPORT BOOL SaveImg2newfile(IN Image* pImg, IN TString strNewfile, IN ULONG uQuality);
  55. extern AFX_API_EXPORT int ZoomImg(IN CRect &Imgrc, IN CONST DWORD &dwDisplayPix, OUT DWORD &dwZoomPix);
  56. extern AFX_API_EXPORT int ZoomImg(IN CONST DWORD &dwImgPix, IN CONST DWORD &dwDisplayPix, OUT DWORD &dwZoomPix);
  57. extern AFX_API_EXPORT BOOL ImgThumbnail(IN Image* pImg, IN CONST DWORD &dwDisplayPix, IN CString strNewfile, IN ULONG uQuality);
  58. extern AFX_API_EXPORT BOOL ImgThumbnail(IN LPCTSTR lpImgpath, IN CONST DWORD &dwDisplayPix, IN CString strNewfile, IN ULONG uQuality);
  59. extern AFX_API_EXPORT BOOL ImgThumbnail(IN CONST TString &strImgpath, IN CONST DWORD &dwDisplayPix, IN TString strNewfile, IN ULONG uQuality);
  60. extern AFX_API_EXPORT BOOL SimpleImgThumbnail(IN LPCWSTR lpImgpath, IN CONST DWORD &dwDisplayPix, IN CString strNewfile, IN ULONG uQuality);
  61. extern AFX_API_EXPORT BOOL GetDiskSpaceInfo(IN LPCTSTR lpRootPathName,IN OUT double &dTotalNum, IN OUT double &dFreeNum);
  62. // 获取计算机操作系统版本;
  63. extern AFX_API_EXPORT INT GetNativeSystemInfo(LPTSTR lpSystemName);
  64. extern AFX_API_EXPORT BOOL IsWow64();
  65. extern AFX_API_EXPORT BOOL IsOSVerIs64();
  66. extern AFX_API_EXPORT INT IsWow64Process( HANDLE hprocess );
  67. extern AFX_API_EXPORT BOOL GetSystemInfo(OSVerInfo &tagOSInfo);
  68. };
  69. #endif