mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
- Fix the values of KeepObject, DeallocateObject and DeallocateObjectKeepRegisters.
svn path=/trunk/; revision=11336
This commit is contained in:
parent
0d7040d3bb
commit
dc5c114cdd
1 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: iotypes.h,v 1.63 2004/06/23 21:43:19 ion Exp $
|
/* $Id: iotypes.h,v 1.64 2004/10/19 20:36:52 navaraf Exp $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ struct _IO_TIMER;
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
KeepObject = 1,
|
||||||
DeallocateObject,
|
DeallocateObject,
|
||||||
KeepObject,
|
|
||||||
DeallocateObjectKeepRegisters
|
DeallocateObjectKeepRegisters
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -224,6 +224,11 @@ typedef struct
|
||||||
USHORT Flags;
|
USHORT Flags;
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
PHYSICAL_ADDRESS Start;
|
||||||
|
ULONG Length;
|
||||||
|
} Generic;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
PHYSICAL_ADDRESS Start;
|
PHYSICAL_ADDRESS Start;
|
||||||
|
|
Loading…
Reference in a new issue