mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
317af320cf
this .h file, but only those. Necessary fixes to a lot of .c files, started optimizing "windows.h" away from some of them. Moved GetCurrentTask prototype to wine/winbase16.h.
30 lines
616 B
C
30 lines
616 B
C
#ifndef __WINE_STRESS_H
|
|
#define __WINE_STRESS_H
|
|
|
|
#include <wintypes.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 */
|