Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

52 lines
657 B

/*++
Copyright (c) 1989 Microsoft Corporation
Module Name:
utaccess.c
Abstract:
Security component user-mode test.
Author:
Robert Reichel (RobertRe) 14-Dec-90
Revision History:
--*/
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#define _TST_USER_ // User mode test
#include "tsevars.c" // Common test variables
#include "ctaccess.c" // Common accessibility test routines
BOOLEAN
Test()
{
BOOLEAN Result = TRUE;
DbgPrint("Se: Start User Mode Access Test...\n");
Result = CTAccess();
DbgPrint("Se: End User Mode Access Test.\n");
return Result;
}
BOOLEAN
main()
{
return Test();
}