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

utsertl.c

Go to the documentation of this file.
00001 00002 /*++ 00003 00004 Copyright (c) 1989 Microsoft Corporation 00005 00006 Module Name: 00007 00008 utsertl.c 00009 00010 Abstract: 00011 00012 Security component user-mode test. 00013 Test security RTL routines from user mode. 00014 00015 Author: 00016 00017 Jim Kelly (JimK) 13-Apr-1990 00018 00019 Revision History: 00020 00021 --*/ 00022 00023 #include <nt.h> 00024 #include <ntrtl.h> 00025 #include <nturtl.h> 00026 00027 #define _TST_USER_ // User mode test 00028 00029 #include "tsevars.c" // Common test variables 00030 00031 #include "ctsertl.c" // Common RTL test routines 00032 00033 00034 BOOLEAN 00035 turtl() 00036 { 00037 BOOLEAN Result; 00038 00039 DbgPrint("Se: Start User Mode RTL Test...\n"); 00040 00041 Result = TestSeRtl(); 00042 00043 if (!Result) { 00044 DbgPrint("Se: ** User Mode RTL Test Failed **\n"); 00045 } 00046 DbgPrint("Se: End User Mode RTL Test.\n"); 00047 return Result; 00048 } 00049 00050 NTSTATUS 00051 __cdecl 00052 main() 00053 { 00054 turtl(); 00055 00056 return STATUS_SUCCESS; 00057 }

Generated on Sat May 15 19:42:17 2004 for test by doxygen 1.3.7