31 lines
615 B
C
31 lines
615 B
C
#ifndef __WINE_STRESS_H
|
|
#define __WINE_STRESS_H
|
|
|
|
#include <windows.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define EDS_WIN 1
|
|
#define EDS_CUR 2
|
|
#define EDS_TEMP 3
|
|
|
|
BOOL16 WINAPI AllocGDIMem(UINT16);
|
|
BOOL16 WINAPI AllocMem(DWORD);
|
|
BOOL16 WINAPI AllocUserMem(UINT16);
|
|
int WINAPI AllocDiskSpace(long, UINT16);
|
|
int WINAPI AllocFileHandles(int);
|
|
int WINAPI GetFreeFileHandles(void);
|
|
void WINAPI FreeAllGDIMem(void);
|
|
void WINAPI FreeAllMem(void);
|
|
void WINAPI FreeAllUserMem(void);
|
|
void WINAPI UnAllocDiskSpace(UINT16);
|
|
void WINAPI UnAllocFileHandles(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WINE_STRESS_H */
|