mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
-IoReuseIrp impl.
-Added missing define svn path=/trunk/; revision=6716
This commit is contained in:
parent
4cb5f1126f
commit
c9ee23ed15
2 changed files with 12 additions and 1 deletions
|
@ -390,6 +390,10 @@ enum
|
|||
#define FILE_VALID_MAILSLOT_OPTION_FLAGS 0x00000032
|
||||
#define FILE_VALID_SET_FLAGS 0x00001036
|
||||
|
||||
/*
|
||||
* special ByteOffset values
|
||||
*/
|
||||
#define FILE_USE_FILE_POINTER_POSITION 0xfffffffe
|
||||
|
||||
typedef ULONG FS_INFORMATION_CLASS, *PFS_INFORMATION_CLASS;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef _INCLUDE_DDK_IOFUNCS_H
|
||||
#define _INCLUDE_DDK_IOFUNCS_H
|
||||
/* $Id: iofuncs.h,v 1.40 2003/11/14 15:19:35 ekohl Exp $ */
|
||||
/* $Id: iofuncs.h,v 1.41 2003/11/19 20:57:22 gdalsnes Exp $ */
|
||||
|
||||
#ifdef __NTOSKRNL__
|
||||
extern POBJECT_TYPE EXPORTED IoAdapterObjectType;
|
||||
|
@ -754,6 +754,13 @@ IoInitializeIrp (
|
|||
USHORT PacketSize,
|
||||
CCHAR StackSize
|
||||
);
|
||||
|
||||
VOID STDCALL
|
||||
IoReuseIrp(
|
||||
IN OUT PIRP Irp,
|
||||
IN NTSTATUS Status
|
||||
);
|
||||
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
IoInitializeTimer (
|
||||
|
|
Loading…
Reference in a new issue