NT4/private/ntos/se/adtutil.c
2020-09-30 17:12:29 +02:00

52 lines
677 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1989 Microsoft Corporation
Module Name:
adtutil.c - Security Auditing - Utility Routines
Abstract:
This Module contains miscellaneous utility routines private to the
Security Auditing Component.
Author:
Robert Reichel (robertre) September 10, 1991
Environment:
Kernel Mode
Revision History:
--*/
#include <nt.h>
#include "tokenp.h"
#include "adt.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE,SepDumpString)
#endif
VOID
SepDumpString(
IN PUNICODE_STRING String
)
{
PAGED_CODE();
if ( String == NULL) {
KdPrint(("<NULL>"));
return;
}
KdPrint(("%Z",String->Buffer));
}