1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _INC_PLA
#define _INC_PLA
#if (_WIN32_WINNT >= 0x0600)
typedef enum _AutoPathFormat {
plaNone = 0x0000,
plaPattern = 0x0001,
plaComputer = 0x0002,
plaMonthDayHour = 0x0100,
plaSerialNumber = 0x0200,
plaYearDayOfYear = 0x0400,
plaYearMonth = 0x0800,
plaYearMonthDay = 0x1000,
plaYearMonthDayHour = 0x2000,
plaMonthDayHourMinute = 0x4000
} AutoPathFormat;
typedef enum _ClockType {
plaTimeStamp = 0,
plaPerformance = 1,
plaSystem = 2,
plaCycle = 3
} ClockType;
typedef enum _CommitMode {
plaCreateNew = 0x0001,
plaModify = 0x0002,
plaCreateOrModify = 0x0003,
plaUpdateRunningInstance = 0x0010,
plaFlushTrace = 0x0020,
plaValidateOnly = 0x1000
} CommitMode;
typedef enum _FileFormat {
plaCommaSeparated = 0,
plaTabSeparated = 1,
plaSql = 2,
plaBinary = 3
} FileFormat;
typedef enum _FolderActionSteps {
plaCreateCab = 0x01,
plaDeleteData = 0x02,
plaSendCab = 0x04,
plaDeleteCab = 0x08,
plaDeleteReport = 0x10
} FolderActionSteps;
typedef enum _ResourcePolicy {
plaDeleteLargest = 0,
plaDeleteOldest = 1
} ResourcePolicy;
typedef enum _StreamMode {
plaFile = 0x0001,
plaRealTime = 0x0002,
plaBoth = 0x0003,
plaBuffering = 0x0004
} StreamMode;
typedef enum _ValueMapType {
plaIndex = 1,
plaFlag = 2,
plaFlagArray = 3,
plaValidation = 4
} ValueMapType;
typedef enum _WeekDays {
plaRunOnce = 0x00,
plaSunday = 0x01,
plaMonday = 0x02,
plaTuesday = 0x04,
plaWednesday = 0x08,
plaThursday = 0x10,
plaFriday = 0x20,
plaSaturday = 0x40,
plaEveryday = 0x7F
} WeekDays;
#endif /*(_WIN32_WINNT >= 0x0600)*/
#endif /*_INC_PLA*/
|