mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:32:57 +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_MAILSLOT_OPTION_FLAGS 0x00000032
|
||||||
#define FILE_VALID_SET_FLAGS 0x00001036
|
#define FILE_VALID_SET_FLAGS 0x00001036
|
||||||
|
|
||||||
|
/*
|
||||||
|
* special ByteOffset values
|
||||||
|
*/
|
||||||
|
#define FILE_USE_FILE_POINTER_POSITION 0xfffffffe
|
||||||
|
|
||||||
typedef ULONG FS_INFORMATION_CLASS, *PFS_INFORMATION_CLASS;
|
typedef ULONG FS_INFORMATION_CLASS, *PFS_INFORMATION_CLASS;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef _INCLUDE_DDK_IOFUNCS_H
|
#ifndef _INCLUDE_DDK_IOFUNCS_H
|
||||||
#define _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__
|
#ifdef __NTOSKRNL__
|
||||||
extern POBJECT_TYPE EXPORTED IoAdapterObjectType;
|
extern POBJECT_TYPE EXPORTED IoAdapterObjectType;
|
||||||
|
@ -754,6 +754,13 @@ IoInitializeIrp (
|
||||||
USHORT PacketSize,
|
USHORT PacketSize,
|
||||||
CCHAR StackSize
|
CCHAR StackSize
|
||||||
);
|
);
|
||||||
|
|
||||||
|
VOID STDCALL
|
||||||
|
IoReuseIrp(
|
||||||
|
IN OUT PIRP Irp,
|
||||||
|
IN NTSTATUS Status
|
||||||
|
);
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
IoInitializeTimer (
|
IoInitializeTimer (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue