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.

52 lines
708 B

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