[DDK]
[reactos.git] / include / psdk / 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
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 typedef ULONG SERVICETYPE;
30
31 typedef struct _flowspec
32 {
33 ULONG TokenRate;
34 ULONG TokenBucketSize;
35 ULONG PeakBandwidth;
36 ULONG Latency;
37 ULONG DelayVariation;
38 SERVICETYPE ServiceType;
39 ULONG MaxSduSize;
40 ULONG MinimumPolicedSize;
41 } FLOWSPEC, *PFLOWSPEC, *LPFLOWSPEC;
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif