Added a typedef for __int64 which is a builtin Visual C++ type
[wine/multimedia.git] / include / tlhelp32.h
blobb8b798a087bc837aa2f3d65ba9755ce99e9b5c2e
1 #ifndef __WINE_TLHELP32_H
2 #define __WINE_TLHELP32_H
4 #include "windows.h"
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 /*===================================================================
11 * Arguments for Toolhelp routines
15 * CreateToolhelp32Snapshot
18 #define TH32CS_SNAPHEAPLIST 0x00000001
19 #define TH32CS_SNAPPROCESS 0x00000002
20 #define TH32CS_SNAPTHREAD 0x00000004
21 #define TH32CS_SNAPMODULE 0x00000008
22 #define TH32CS_SNAPALL (TH32CS_SNAPHEAPLIST | TH32CS_SNAPPROCESS | TH32CS_SNAPTHREAD | TH32CS_SNAPMODULE)
23 #define TH32CS_INHERIT 0x80000000
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 #endif /* __WINE_TLHELP32_H */