Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

adtutil.c

Go to the documentation of this file.
00001 /*++ 00002 00003 Copyright (c) 1989 Microsoft Corporation 00004 00005 Module Name: 00006 00007 adtutil.c - Security Auditing - Utility Routines 00008 00009 Abstract: 00010 00011 This Module contains miscellaneous utility routines private to the 00012 Security Auditing Component. 00013 00014 Author: 00015 00016 Robert Reichel (robertre) September 10, 1991 00017 00018 Environment: 00019 00020 Kernel Mode 00021 00022 Revision History: 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

Generated on Sat May 15 19:39:13 2004 for test by doxygen 1.3.7