1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-19 09:55:16 +00:00
qb64/internal/c/mingw32/i686-w64-mingw32/include/aux_ulib.h
2019-01-01 22:40:38 +11:00

30 lines
619 B
C

/**
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
#ifndef _AUX_SHLD_LIB_H
#define _AUX_SHLD_LIB_H
#include <winapifamily.h>
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
#include <windows.h>
#ifdef __cplusplus
extern "C" {
#endif
WINBOOL WINAPI AuxUlibInitialize (VOID);
WINBOOL WINAPI AuxUlibSetSystemFileCacheSize (SIZE_T MinimumFileCacheSize, SIZE_T MaximumFileCacheSize, DWORD Flags);
WINBOOL WINAPI AuxUlibIsDLLSynchronizationHeld (PBOOL SynchronizationHeld);
#ifdef __cplusplus
}
#endif
#endif
#endif