- Temporary fix for making locale switches possible. Patch by zebasoftis. Fixes bug...
[reactos.git] / reactos / w32api / include / qos.h
1 /*
2 * qos.h
3 *
4 * Structures and definitions for QoS data types.
5 *
6 * This file is part of the w32api package.
7 *
8 * Contributors:
9 * Created by Alex Ionescu <alex@relsoft.net>
10 *
11 * THIS SOFTWARE IS NOT COPYRIGHTED
12 *
13 * This source code is offered for use in the public domain. You may
14 * use, modify or distribute it freely.
15 *
16 * This code is distributed in the hope that it will be useful but
17 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
18 * DISCLAIMED. This includes but is not limited to warranties of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 */
22 #ifndef __QOS_H
23 #define __QOS_H
24 #if __GNUC__ >=3
25 #pragma GCC system_header
26 #endif
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 typedef ULONG SERVICETYPE;
33
34 typedef struct _flowspec
35 {
36 ULONG TokenRate;
37 ULONG TokenBucketSize;
38 ULONG PeakBandwidth;
39 ULONG Latency;
40 ULONG DelayVariation;
41 SERVICETYPE ServiceType;
42 ULONG MaxSduSize;
43 ULONG MinimumPolicedSize;
44 } FLOWSPEC, *PFLOWSPEC, *LPFLOWSPEC;
45
46 #ifdef __cplusplus
47 }
48 #endif
49
50 #endif