00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
#include <nt.h>
00027
#include "tokenp.h"
00028
#include "adt.h"
00029
00030
#ifdef ALLOC_PRAGMA
00031
#pragma alloc_text(PAGE,SepDumpString)
00032
#endif
00033
00034
00035
VOID
00036 SepDumpString(
00037 IN PUNICODE_STRING String
00038 )
00039
00040 {
00041
PAGED_CODE();
00042
00043
if (
String ==
NULL) {
00044 KdPrint((
"<NULL>"));
00045
return;
00046 }
00047
00048 KdPrint((
"%Z",
String->Buffer));
00049
00050 }
00051