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

4 years ago
  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. utaccess.c
  5. Abstract:
  6. Security component user-mode test.
  7. Author:
  8. Robert Reichel (RobertRe) 14-Dec-90
  9. Revision History:
  10. --*/
  11. #include <nt.h>
  12. #include <ntrtl.h>
  13. #include <nturtl.h>
  14. #define _TST_USER_ // User mode test
  15. #include "tsevars.c" // Common test variables
  16. #include "ctaccess.c" // Common accessibility test routines
  17. BOOLEAN
  18. Test()
  19. {
  20. BOOLEAN Result = TRUE;
  21. DbgPrint("Se: Start User Mode Access Test...\n");
  22. Result = CTAccess();
  23. DbgPrint("Se: End User Mode Access Test.\n");
  24. return Result;
  25. }
  26. BOOLEAN
  27. main()
  28. {
  29. return Test();
  30. }