Source code of Windows XP (NT5)
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.

51 lines
869 B

  1. /*++
  2. Copyright (c) 1999 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. krishnaG 21-September-1999
  15. Environment:
  16. User Level: Win32
  17. Revision History:
  18. abhisheV 29-September-1999
  19. --*/
  20. #ifdef MIDL_PASS
  21. #define WIN32_LEAN_AND_MEAN
  22. #endif
  23. #include <windows.h>
  24. #ifdef MIDL_PASS
  25. #define LPWSTR [string] wchar_t*
  26. #define LPDEVMODEW DWORD
  27. #define PSECURITY_DESCRIPTOR DWORD
  28. #define BOOL DWORD
  29. #endif
  30. #include <winipsec.h>