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.

57 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. import.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. //#include <windef.h>
  18. #include <nt.h>
  19. #include <ntrtl.h>
  20. // #include <rpc.h>
  21. #include <windef.h>
  22. #include <winerror.h>
  23. #include <lmcons.h>
  24. #ifdef MIDL_PASS
  25. #ifdef UNICODE
  26. #define LPTSTR [string] wchar_t*
  27. #else
  28. #define LPTSTR [string] LPTSTR
  29. #endif
  30. #define LPSTR [string] LPSTR
  31. #define LPWSTR [string] wchar_t*
  32. #define BOOL DWORD
  33. #endif
  34. #include <lmchdev.h>
  35. #include <lmremutl.h>
  36. #include <lmserver.h>
  37. #include <lmshare.h>
  38. #include <lmstats.h>
  39. #include <lmdfs.h>
  40. #include <dfspriv.h>