Fixed some of the issues reported by winapi-check.
[wine] / include / stress.h
1 #ifndef __WINE_STRESS_H
2 #define __WINE_STRESS_H
3
4 #include "windef.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  WINAPI AllocGDIMem(UINT16);
15 BOOL16  WINAPI AllocMem(DWORD);
16 BOOL16  WINAPI AllocUserMem(UINT16);
17 INT16   WINAPI AllocDiskSpace(LONG, UINT16);
18 INT16   WINAPI AllocFileHandles(INT16);
19 INT16   WINAPI GetFreeFileHandles(void);
20 void    WINAPI FreeAllGDIMem(void);
21 void    WINAPI FreeAllMem(void);
22 void    WINAPI FreeAllUserMem(void);
23 void    WINAPI UnAllocDiskSpace(UINT16);
24 void    WINAPI UnAllocFileHandles(void);
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif /* __WINE_STRESS_H */