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.

41 lines
846 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. WlDef.h
  5. Abstract:
  6. This header collects together the various files neccessary to create a basic
  7. set of definitions for the WDM library.
  8. Author:
  9. Adrian J. Oney - April 21, 2002
  10. Revision History:
  11. --*/
  12. #include "WlMacro.h"
  13. #define _NTDDK_
  14. #include <ntifs.h> // Best path to get interesting defines
  15. #include <wchar.h>
  16. #define _IN_KERNEL_
  17. #include <regstr.h>
  18. #include <sddl.h>
  19. #include <wdmsec.h>
  20. #include "Wl\wlprivate.h"
  21. #include "Io\IoDevobj.h"
  22. #include "Pp\PpRegState.h"
  23. #include "Cm\CmRegUtil.h"
  24. #include "Se\SeSddl.h"
  25. #include "Se\SeUtil.h"
  26. //
  27. // For the sake of good coding practice, no macros or defines should be
  28. // declared in this file, but rather they should be defined in seperate headers.
  29. //