Release 950319
[wine] / include / stress.h
1 #ifndef __STRESS_H
2 #define __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 BOOL    AllocGDIMem(UINT);
15 BOOL    AllocMem(DWORD);
16 BOOL    AllocUserMem(UINT);
17 int     AllocDiskSpace(long, UINT);
18 int     AllocFileHandles(int);
19 int     GetFreeFileHandles(void);
20 void    FreeAllGDIMem(void);
21 void    FreeAllMem(void);
22 void    FreeAllUserMem(void);
23 void    UnAllocDiskSpace(UINT);
24 void    UnAllocFileHandles(void);
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif /* __STRESS_H */