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.

50 lines
631 B

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. utseqos.c
  5. Abstract:
  6. Security component user-mode test.
  7. Security quality of service test from user mode.
  8. Author:
  9. Jim Kelly (JimK) 27-June-1990
  10. Revision History:
  11. --*/
  12. #include <nt.h>
  13. #include <ntrtl.h>
  14. #include <nturtl.h>
  15. #define _TST_USER_ // User mode test
  16. #include "tsecomm.c" // Common routines
  17. #include "ctseqos.c" // quality of service tests
  18. BOOLEAN
  19. Test()
  20. {
  21. BOOLEAN Result = TRUE;
  22. Result = CtSeQos();
  23. return Result;
  24. }
  25. BOOLEAN
  26. main()
  27. {
  28. return Test();
  29. }