Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
677 B

/*++
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));
}