mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
f44942d42f
- Properly free handles in driver (spotted by Thomas) - Remove dead code in driver (spotted by Thomas) - Send an IOCTL to stop on symlinks to allow more precise tests svn path=/trunk/; revision=69336
14 lines
415 B
C
14 lines
415 B
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory
|
|
* PURPOSE: IoCreateFile test declarations
|
|
* PROGRAMMER: Pierre Schweitzer <pierre@reactos.org>
|
|
*/
|
|
|
|
#ifndef _KMTEST_IOCREATEFILE_H_
|
|
#define _KMTEST_IOCREATEFILE_H_
|
|
|
|
#define IOCTL_CALL_CREATE 1
|
|
#define IOCTL_DISABLE_SYMLINK 2
|
|
|
|
#endif /* !defined _KMTEST_IOCREATEFILE_H_ */
|