ehstorapi.h 536 B

12345678910111213141516171819202122
  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_EHSTORAPI
  7. #define _INC_EHSTORAPI
  8. #if (_WIN32_WINNT >= 0x0601)
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. typedef struct _ACT_AUTHORIZATION_STATE {
  13. ULONG ulState;
  14. } ACT_AUTHORIZATION_STATE, *PACT_AUTHORIZATION_STATE;
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /*(_WIN32_WINNT >= 0x0601)*/
  19. #endif /*_INC_EHSTORAPI*/