cscapi.h 586 B

123456789101112131415161718192021222324252627
  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_CSCAPI
  7. #define _INC_CSCAPI
  8. #include <windows.h>
  9. #if (_WIN32_WINNT >= 0x0600)
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. DWORD OfflineFilesEnable(
  14. WINBOOL bEnable,
  15. WINBOOL *pbRebootRequired
  16. );
  17. DWORD OfflineFilesQueryStatus(
  18. WINBOOL *pbActive,
  19. WINBOOL *pbEnabled
  20. );
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif /*(_WIN32_WINNT >= 0x0600)*/
  25. #endif /*_INC_CSCAPI*/