mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[NTFS]
Implement NtfsMarkIrpContextForQueue() which allows marking an IRP to queue it svn path=/trunk/; revision=67908
This commit is contained in:
parent
596e134bad
commit
8034fab3df
1 changed files with 10 additions and 2 deletions
|
@ -461,9 +461,17 @@ typedef struct _FCB
|
|||
|
||||
extern PNTFS_GLOBAL_DATA NtfsGlobalData;
|
||||
|
||||
//int CdfsStrcmpi( wchar_t *str1, wchar_t *str2 );
|
||||
//void CdfsWstrcpy( wchar_t *str1, wchar_t *str2, int max );
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
NtfsMarkIrpContextForQueue(PNTFS_IRP_CONTEXT IrpContext)
|
||||
{
|
||||
PULONG Flags = &IrpContext->Flags;
|
||||
|
||||
*Flags &= ~IRPCONTEXT_COMPLETE;
|
||||
*Flags |= IRPCONTEXT_QUEUE;
|
||||
|
||||
return STATUS_PENDING;
|
||||
}
|
||||
|
||||
/* attrib.c */
|
||||
|
||||
|
|
Loading…
Reference in a new issue