mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35:41 +00:00
[SAMLIB] Add function names to trace messages
This commit is contained in:
parent
aa59e3ad00
commit
556cef5be3
1 changed files with 5 additions and 5 deletions
|
@ -155,7 +155,7 @@ SampCheckPassword(IN SAMPR_HANDLE UserHandle,
|
||||||
ULONG Upper = 0, Lower = 0, Digit = 0, Punct = 0, Alpha = 0;
|
ULONG Upper = 0, Lower = 0, Digit = 0, Punct = 0, Alpha = 0;
|
||||||
NTSTATUS Status = STATUS_SUCCESS;
|
NTSTATUS Status = STATUS_SUCCESS;
|
||||||
|
|
||||||
TRACE("(%p %p)\n", UserHandle, Password);
|
TRACE("SampCheckPassword(%p %p)\n", UserHandle, Password);
|
||||||
|
|
||||||
/* Get the domain password information */
|
/* Get the domain password information */
|
||||||
Status = SamrGetUserDomainPasswordInformation(UserHandle,
|
Status = SamrGetUserDomainPasswordInformation(UserHandle,
|
||||||
|
@ -1045,7 +1045,7 @@ NTAPI
|
||||||
SamGetCompatibilityMode(IN SAM_HANDLE ObjectHandle,
|
SamGetCompatibilityMode(IN SAM_HANDLE ObjectHandle,
|
||||||
OUT PULONG Mode)
|
OUT PULONG Mode)
|
||||||
{
|
{
|
||||||
TRACE("(%p %p)\n", ObjectHandle, Mode);
|
TRACE("SamGetCompatibilityMode(%p %p)\n", ObjectHandle, Mode);
|
||||||
|
|
||||||
if (Mode == NULL)
|
if (Mode == NULL)
|
||||||
return STATUS_INVALID_PARAMETER;
|
return STATUS_INVALID_PARAMETER;
|
||||||
|
@ -1065,7 +1065,7 @@ SamGetDisplayEnumerationIndex(IN SAM_HANDLE DomainHandle,
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
TRACE("(%p %lu %wZ %p)\n",
|
TRACE("SamGetDisplayEnumerationIndex(%p %lu %wZ %p)\n",
|
||||||
DomainHandle, DisplayInformation, Prefix, Index);
|
DomainHandle, DisplayInformation, Prefix, Index);
|
||||||
|
|
||||||
if ((Prefix == NULL) ||
|
if ((Prefix == NULL) ||
|
||||||
|
@ -1574,7 +1574,7 @@ SamQueryDisplayInformation(IN SAM_HANDLE DomainHandle,
|
||||||
SAMPR_DISPLAY_INFO_BUFFER LocalBuffer;
|
SAMPR_DISPLAY_INFO_BUFFER LocalBuffer;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
TRACE("(%p %lu %lu %lu %lu %p %p %p %p)\n",
|
TRACE("SamQueryDisplayInformation(%p %lu %lu %lu %lu %p %p %p %p)\n",
|
||||||
DomainHandle, DisplayInformation, Index, EntryCount,
|
DomainHandle, DisplayInformation, Index, EntryCount,
|
||||||
PreferredMaximumLength, TotalAvailable, TotalReturned,
|
PreferredMaximumLength, TotalAvailable, TotalReturned,
|
||||||
ReturnedEntryCount, SortedBuffer);
|
ReturnedEntryCount, SortedBuffer);
|
||||||
|
@ -2288,7 +2288,7 @@ SamShutdownSamServer(IN SAM_HANDLE ServerHandle)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
TRACE("(%p)\n", ServerHandle);
|
TRACE("SamShutdownSamServer(%p)\n", ServerHandle);
|
||||||
|
|
||||||
RpcTryExcept
|
RpcTryExcept
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue