Reactos
at listview 21 lines 512 B view raw
1/* 2 * PROJECT: ReactOS kernel-mode tests 3 * LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+) 4 * PURPOSE: Kernel-Mode Test Suite Example test declarations 5 * COPYRIGHT: Copyright 2011-2018 Thomas Faber <thomas.faber@reactos.org> 6 */ 7 8#ifndef _KMTEST_EXAMPLE_H_ 9#define _KMTEST_EXAMPLE_H_ 10 11typedef 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_ */