blob: 12c1cad1c25a6edb7f437d4d1694d25401fbb9f2 (
plain)
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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
PURPOSE.
Module Name:
kcs.h
Abstract:
This module contains sample code to demonstrate how to provide
counter data from a kernel driver.
Environment:
Kernel mode only.
--*/
typedef struct GEOMETRIC_WAVE_VALUES {
ULONG Square;
ULONG Triangle;
} GEOMETRIC_WAVE_VALUES;
typedef struct TRIGNOMETRIC_WAVE_VALUES {
ULONG Constant;
ULONG Cosine;
ULONG Sine;
} TRIGNOMETRIC_WAVE_VALUES;
|