source: trunk/include/win/tlhelp32.h@ 1036

Last change on this file since 1036 was 862, checked in by phaller, 26 years ago

Add: Toolhelp function stubs added

File size: 703 bytes
Line 
1/* $Id: tlhelp32.h,v 1.2 1999-09-07 20:27:43 phaller Exp $ */
2
3#ifndef __WINE_TLHELP32_H
4#define __WINE_TLHELP32_H
5
6#include "windef.h"
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12 /*===================================================================
13 * Arguments for Toolhelp routines
14 */
15
16 /*
17 * CreateToolhelp32Snapshot
18 */
19
20#define TH32CS_SNAPHEAPLIST 0x00000001
21#define TH32CS_SNAPPROCESS 0x00000002
22#define TH32CS_SNAPTHREAD 0x00000004
23#define TH32CS_SNAPMODULE 0x00000008
24#define TH32CS_SNAPALL (TH32CS_SNAPHEAPLIST | TH32CS_SNAPPROCESS | TH32CS_SNAPTHREAD | TH32CS_SNAPMODULE)
25#define TH32CS_INHERIT 0x80000000
26
27#ifdef __cplusplus
28 }
29#endif
30
31#endif /* __WINE_TLHELP32_H */
Note: See TracBrowser for help on using the repository browser.