1st cut implementation of DdeInitialize32W and supporting code.
[wine] / include / tlhelp32.h
1 #ifndef __WINE_TLHELP32_H
2 #define __WINE_TLHELP32_H
3
4 #include "windows.h"
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10   /*===================================================================
11    *  Arguments for Toolhelp routines
12    */
13
14   /*
15    * CreateToolhelp32Snapshot
16    */
17
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
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #endif /* __WINE_TLHELP32_H */