[RDBSS] Implement RxQueryNameInfo() and RxConjureOriginalName()

This commit is contained in:
Pierre Schweitzer 2017-10-31 23:03:16 +01:00
parent f5104a0042
commit cc578af6df
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
2 changed files with 179 additions and 2 deletions

View file

@ -75,6 +75,22 @@ RxFindOrCreateConnections(
_In_ PRX_CONNECTION_ID RxConnectionId);
#endif
typedef enum _RX_NAME_CONJURING_METHODS
{
VNetRoot_As_Prefix,
VNetRoot_As_UNC_Name,
VNetRoot_As_DriveLetter
} RX_NAME_CONJURING_METHODS;
VOID
RxConjureOriginalName(
_Inout_ PFCB Fcb,
_Inout_ PFOBX Fobx,
_Out_ PULONG ActualNameLength,
_Out_writes_bytes_( *LengthRemaining) PWCHAR OriginalName,
_Inout_ PLONG LengthRemaining,
_In_ RX_NAME_CONJURING_METHODS NameConjuringMethod);
#if (_WIN32_WINNT >= 0x0600)
NTSTATUS
RxCompleteMdl(