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.

52 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996-1997 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 windef types. The .idl file for the RPC product should contain a
  8. line in the interface body that imports this file. For example:
  9. import "imports.h";
  10. Doing this causes the MIDL generated header file to contain the
  11. following line:
  12. #include "imports.h"
  13. If this technique is not used, and instead the .idl file for the RPC
  14. product simply contains #include <importsf.h>, then the contents of
  15. imports.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 imports.h.
  19. Author:
  20. Glenn Curtis (glennc) 25-Feb-1997
  21. Environment:
  22. User Mode - Win32 - for use with the MIDL compiler
  23. Revision History:
  24. --*/
  25. [
  26. version(0.0),
  27. local
  28. ]
  29. interface imports
  30. {
  31. #define MIDL_PASS
  32. #include <imports.h>
  33. }