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.

58 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. imports.idl
  5. Abstract:
  6. This file is useful for creating RPC interfaces that require the use
  7. of types defined in other header files. The .idl file for the RPC
  8. product should contain a line in the interface body that imports this
  9. file. For example:
  10. import "imports.idl";
  11. Doing this causes the MIDL generated header file to contain
  12. the #include lines that are in this file.
  13. If this technique is not used, and instead the .idl file for the RPC
  14. product simply contains #include <windef.h>, then the contents of
  15. windef.h will be expanded in the MIDL generated header file. This
  16. can lead to duplicate definition problems later when the RPC client
  17. or RPC server code needs to include both the MIDL generated header file
  18. and a file that is included in windef.h.
  19. Author:
  20. Dan Lafferty (danl) 20-Mar-1991
  21. Environment:
  22. User Mode - Win32 - for use with the MIDL compiler
  23. Revision History:
  24. 03-Apr-1991 danl
  25. created
  26. --*/
  27. [
  28. uuid(12345678-1234-ABCD-EF00-9948756789AB),
  29. #ifdef __midl
  30. ms_union,
  31. #endif // __midl
  32. version(2.0)
  33. ]
  34. interface logon_imports
  35. {
  36. #define MIDL_PASS
  37. #include "imports.h"
  38. }