wptypes.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef __WPTYPES_H__
  7. #define __WPTYPES_H__
  8. #include <_mingw_unicode.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. typedef struct tagWPSITEINFOA {
  13. DWORD dwSize;
  14. DWORD dwFlags;
  15. LPSTR lpszSiteName;
  16. LPSTR lpszSiteURL;
  17. } WPSITEINFOA,*LPWPSITEINFOA;
  18. typedef struct tagWPSITEINFOW {
  19. DWORD dwSize;
  20. DWORD dwFlags;
  21. LPWSTR lpszSiteName;
  22. LPWSTR lpszSiteURL;
  23. } WPSITEINFOW,*LPWPSITEINFOW;
  24. typedef struct tagWPPROVINFOA {
  25. DWORD dwSize;
  26. DWORD dwFlags;
  27. DWORD dwPriority;
  28. LPSTR lpszProviderName;
  29. LPSTR lpszProviderCLSID;
  30. LPSTR lpszDllPath;
  31. } WPPROVINFOA,*LPWPPROVINFOA;
  32. typedef struct tagWPPROVINFOW {
  33. DWORD dwSize;
  34. DWORD dwFlags;
  35. DWORD dwPriority;
  36. LPWSTR lpszProviderName;
  37. LPWSTR lpszProviderCLSID;
  38. LPWSTR lpszDllPath;
  39. } WPPROVINFOW,*LPWPPROVINFOW;
  40. #define WPSITEINFO __MINGW_NAME_AW(WPSITEINFO)
  41. #define LPWPSITEINFO __MINGW_NAME_AW(LPWPSITEINFO)
  42. #define WPPROVINFO __MINGW_NAME_AW(WPPROVINFO)
  43. #define LPWPPROVINFO __MINGW_NAME_AW(LPWPPROVINFO)
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif