Release 970305
[wine] / include / stress.h
1 #ifndef __WINE_STRESS_H
2 #define __WINE_STRESS_H
3
4 #include <windows.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 #define EDS_WIN         1
11 #define EDS_CUR         2
12 #define EDS_TEMP        3
13
14 BOOL16  AllocGDIMem(UINT16);
15 BOOL16  AllocMem(DWORD);
16 BOOL16  AllocUserMem(UINT16);
17 int     AllocDiskSpace(long, UINT16);
18 int     AllocFileHandles(int);
19 int     GetFreeFileHandles(void);
20 void    FreeAllGDIMem(void);
21 void    FreeAllMem(void);
22 void    FreeAllUserMem(void);
23 void    UnAllocDiskSpace(UINT16);
24 void    UnAllocFileHandles(void);
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif /* __WINE_STRESS_H */