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.

32 lines
908 B

  1. /********************************************************************/
  2. /** Copyright(c) 1991 Microsoft Corporation. **/
  3. /********************************************************************/
  4. //***
  5. //
  6. // Filename: import.h
  7. //
  8. // Description: This file allows us to include standard system header files
  9. // in the .idl file. The main .idl file imports a file called
  10. // import.idl. This allows the .idl file to use the types defined
  11. // in these header files. It also causes the following line to
  12. // be added in the MIDL generated header file:
  13. //
  14. // #include "import.h"
  15. //
  16. // Thus these types are available to the RPC stub routines as well.
  17. //
  18. // History:
  19. // June 11,1992. NarenG Created original version.
  20. //
  21. #include <windef.h>
  22. #ifdef MIDL_PASS
  23. #define LPWSTR [string] wchar_t*
  24. #define BOOL DWORD
  25. #endif
  26. #include <macfile.h>