* include/winnt.h (FILE_*): Sync with ddk/winddk.h.

* include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
This commit is contained in:
Danny Smith
2003-07-18 10:21:01 +00:00
parent b4ece40c0f
commit 00314d7e16
3 changed files with 128 additions and 43 deletions

View File

@ -170,10 +170,13 @@ extern "C" {
#define SERIAL_LSRMST_LSR_DATA 1
#define SERIAL_LSRMST_LSR_NODATA 2
#define SERIAL_LSRMST_MST 3
#define FILE_ANY_ACCESS 0
#define FILE_READ_ACCESS 1
#define FILE_WRITE_ACCESS 2
#define FILE_SPECIAL_ACCESS (FILE_ANY_ACCESS)
/* Also in ddk/winddk.h */
#define FILE_ANY_ACCESS 0x00000000
#define FILE_SPECIAL_ACCESS FILE_ANY_ACCESS
#define FILE_READ_ACCESS 0x00000001
#define FILE_WRITE_ACCESS 0x00000002
#define DISK_LOGGING_START 0
#define DISK_LOGGING_STOP 1
#define DISK_LOGGING_DUMP 2