mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[SAMSRV] Older functions should call newer functions
This commit is contained in:
parent
ae2ad29ad5
commit
bf05fcbd29
1 changed files with 35 additions and 24 deletions
|
@ -8724,10 +8724,22 @@ SamrQueryDisplayInformation(IN SAMPR_HANDLE DomainHandle,
|
||||||
OUT unsigned long *TotalReturned,
|
OUT unsigned long *TotalReturned,
|
||||||
OUT PSAMPR_DISPLAY_INFO_BUFFER Buffer)
|
OUT PSAMPR_DISPLAY_INFO_BUFFER Buffer)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
TRACE("SamrQueryDisplayInformation(%p %lu %lu %lu %lu %p %p %p)\n",
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
DomainHandle, DisplayInformationClass, Index,
|
||||||
|
EntryCount, PreferredMaximumLength, TotalAvailable,
|
||||||
|
TotalReturned, Buffer);
|
||||||
|
|
||||||
|
return SamrQueryDisplayInformation3(DomainHandle,
|
||||||
|
DisplayInformationClass,
|
||||||
|
Index,
|
||||||
|
EntryCount,
|
||||||
|
PreferredMaximumLength,
|
||||||
|
TotalAvailable,
|
||||||
|
TotalReturned,
|
||||||
|
Buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Function 41 */
|
/* Function 41 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -8736,10 +8748,16 @@ SamrGetDisplayEnumerationIndex(IN SAMPR_HANDLE DomainHandle,
|
||||||
IN PRPC_UNICODE_STRING Prefix,
|
IN PRPC_UNICODE_STRING Prefix,
|
||||||
OUT unsigned long *Index)
|
OUT unsigned long *Index)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
TRACE("SamrGetDisplayEnumerationIndex(%p %lu %p %p)\n",
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
DomainHandle, DisplayInformationClass, Prefix, Index);
|
||||||
|
|
||||||
|
return SamrGetDisplayEnumerationIndex2(DomainHandle,
|
||||||
|
DisplayInformationClass,
|
||||||
|
Prefix,
|
||||||
|
Index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Function 42 */
|
/* Function 42 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -8749,6 +8767,7 @@ SamrTestPrivateFunctionsDomain(IN SAMPR_HANDLE DomainHandle)
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Function 43 */
|
/* Function 43 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -8955,14 +8974,14 @@ SamrQueryDisplayInformation2(IN SAMPR_HANDLE DomainHandle,
|
||||||
EntryCount, PreferredMaximumLength, TotalAvailable,
|
EntryCount, PreferredMaximumLength, TotalAvailable,
|
||||||
TotalReturned, Buffer);
|
TotalReturned, Buffer);
|
||||||
|
|
||||||
return SamrQueryDisplayInformation(DomainHandle,
|
return SamrQueryDisplayInformation3(DomainHandle,
|
||||||
DisplayInformationClass,
|
DisplayInformationClass,
|
||||||
Index,
|
Index,
|
||||||
EntryCount,
|
EntryCount,
|
||||||
PreferredMaximumLength,
|
PreferredMaximumLength,
|
||||||
TotalAvailable,
|
TotalAvailable,
|
||||||
TotalReturned,
|
TotalReturned,
|
||||||
Buffer);
|
Buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -8977,10 +8996,8 @@ SamrGetDisplayEnumerationIndex2(IN SAMPR_HANDLE DomainHandle,
|
||||||
TRACE("SamrGetDisplayEnumerationIndex2(%p %lu %p %p)\n",
|
TRACE("SamrGetDisplayEnumerationIndex2(%p %lu %p %p)\n",
|
||||||
DomainHandle, DisplayInformationClass, Prefix, Index);
|
DomainHandle, DisplayInformationClass, Prefix, Index);
|
||||||
|
|
||||||
return SamrGetDisplayEnumerationIndex(DomainHandle,
|
UNIMPLEMENTED;
|
||||||
DisplayInformationClass,
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
Prefix,
|
|
||||||
Index);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -9416,14 +9433,8 @@ SamrQueryDisplayInformation3(IN SAMPR_HANDLE DomainHandle,
|
||||||
EntryCount, PreferredMaximumLength, TotalAvailable,
|
EntryCount, PreferredMaximumLength, TotalAvailable,
|
||||||
TotalReturned, Buffer);
|
TotalReturned, Buffer);
|
||||||
|
|
||||||
return SamrQueryDisplayInformation(DomainHandle,
|
UNIMPLEMENTED;
|
||||||
DisplayInformationClass,
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
Index,
|
|
||||||
EntryCount,
|
|
||||||
PreferredMaximumLength,
|
|
||||||
TotalAvailable,
|
|
||||||
TotalReturned,
|
|
||||||
Buffer);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue