mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
[NTFS]
Implement NtfsMarkIrpContextForQueue() which allows marking an IRP to queue it svn path=/trunk/; revision=67908
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user