00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
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
00030
#include "tsevars.c"
00031
00032
#include "cttoken.c"
00033
00034
00035
00036 BOOLEAN
00037 Test()
00038 {
00039
00040 BOOLEAN Result =
TRUE;
00041
00042
DbgPrint(
"Se: Start User Mode Token Object Test...\n");
00043
00044 Result =
CTToken();
00045
00046
DbgPrint(
"Se: End User Mode Token Object Test.\n");
00047
00048
return Result;
00049 }
00050
00051
00052 BOOLEAN
00053 __cdecl
00054 main()
00055 {
00056
return Test();
00057 }