Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 1989 Microsoft Corporation
Module Name:
uttoken.c
Abstract:
Security component user-mode test.
Token Object test from user mode.
Author:
Jim Kelly (JimK) 27-June-1990
Revision History:
--*/
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#define _TST_USER_ // User mode test
#include "tsevars.c" // Common test variables
#include "cttoken.c" // Common accessibility test routines
BOOLEAN Test() {
BOOLEAN Result = TRUE;
DbgPrint("Se: Start User Mode Token Object Test...\n");
Result = CTToken();
DbgPrint("Se: End User Mode Token Object Test.\n");
return Result; }
BOOLEAN __cdecl main() { return Test(); }
|