aux_ulib.h 619 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * This file is part of the mingw-w64 runtime package.
  3. * No warranty is given; refer to the file DISCLAIMER within this package.
  4. */
  5. #ifndef _AUX_SHLD_LIB_H
  6. #define _AUX_SHLD_LIB_H
  7. #include <winapifamily.h>
  8. #if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
  9. #include <windows.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. WINBOOL WINAPI AuxUlibInitialize (VOID);
  14. WINBOOL WINAPI AuxUlibSetSystemFileCacheSize (SIZE_T MinimumFileCacheSize, SIZE_T MaximumFileCacheSize, DWORD Flags);
  15. WINBOOL WINAPI AuxUlibIsDLLSynchronizationHeld (PBOOL SynchronizationHeld);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif
  20. #endif