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.

67 lines
1.3 KiB

  1. /*++
  2. Copyright Microsoft Corporation. 1998
  3. Module Name:
  4. imports.h
  5. Abstract:
  6. This file allows us to include standard system header files in the
  7. .idl file. The main .idl file imports a file called import.idl.
  8. This allows the .idl file to use the types defined in these header
  9. files. It also causes the following line to be added in the
  10. MIDL generated header file:
  11. #include "import.h"
  12. Thus these types are available to the RPC stub routines as well.
  13. Author:
  14. Dan Lafferty (danl) 07-May-1991
  15. Revision History:
  16. --*/
  17. #ifdef MIDL_PASS
  18. #define WIN32_LEAN_AND_MEAN
  19. #endif
  20. //#ifndef _NTDEF_
  21. //typedef LONG NTSTATUS, *PNTSTATUS;
  22. //#endif
  23. //typedef unsigned long DWORD;
  24. //typedef unsigned char BYTE;
  25. //#include <windows.h>
  26. //#include <winnt.h>
  27. //#include <ntdef.h>
  28. //#include <ntseapi.h>
  29. //#include <ntpsapi.h>
  30. //#include <ntkeapi.h>
  31. #ifdef MIDL_PASS
  32. #include <nt.h>
  33. #include <ntrtl.h>
  34. #include <nturtl.h>
  35. #include <ntexapi.h>
  36. //#include <windef.h>
  37. //#include <wtypes.h>
  38. typedef unsigned long DWORD;
  39. typedef unsigned char BYTE, *PBYTE;
  40. #endif
  41. #include <allproc.h>
  42. #ifdef MIDL_PASS
  43. #define LPWSTR [string] wchar_t*
  44. #define PSECURITY_DESCRIPTOR DWORD
  45. #define BOOL DWORD
  46. #endif