- Merge the remaining portion of the wlan-bringup branch
[reactos.git] / rostests / kmtests / example / Example.h
1 /*
2 * PROJECT: ReactOS kernel-mode tests
3 * LICENSE: GPLv2+ - See COPYING in the top level directory
4 * PURPOSE: Kernel-Mode Test Suite Example Test declarations
5 * PROGRAMMER: Thomas Faber <thfabba@gmx.de>
6 */
7
8 #ifndef _KMTEST_EXAMPLE_H_
9 #define _KMTEST_EXAMPLE_H_
10
11 typedef struct
12 {
13 int a;
14 char b[8];
15 } MY_STRUCT, *PMY_STRUCT;
16
17 #define IOCTL_NOTIFY 1
18 #define IOCTL_SEND_STRING 2
19 #define IOCTL_SEND_MYSTRUCT 3
20
21 #endif /* !defined _KMTEST_EXAMPLE_H_ */