profinfo.h 842 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 _INC_PROFINFO
  7. #define _INC_PROFINFO
  8. #include <_mingw_unicode.h>
  9. typedef struct _PROFILEINFOA {
  10. DWORD dwSize;
  11. DWORD dwFlags;
  12. LPSTR lpUserName;
  13. LPSTR lpProfilePath;
  14. LPSTR lpDefaultPath;
  15. LPSTR lpServerName;
  16. LPSTR lpPolicyPath;
  17. HANDLE hProfile;
  18. } PROFILEINFOA,*LPPROFILEINFOA;
  19. typedef struct _PROFILEINFOW {
  20. DWORD dwSize;
  21. DWORD dwFlags;
  22. LPWSTR lpUserName;
  23. LPWSTR lpProfilePath;
  24. LPWSTR lpDefaultPath;
  25. LPWSTR lpServerName;
  26. LPWSTR lpPolicyPath;
  27. HANDLE hProfile;
  28. } PROFILEINFOW,*LPPROFILEINFOW;
  29. __MINGW_TYPEDEF_AW(PROFILEINFO)
  30. __MINGW_TYPEDEF_AW(LPPROFILEINFO)
  31. #define MIDL_STRING
  32. #endif