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.

63 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1994 Microsoft Corp.
  3. Module:
  4. infoimp.idl
  5. Abstract:
  6. IDL file for importing windef types.
  7. The ".idl" for the RPC product should contain a line in the interface
  8. body that imports this file. For example:
  9. import "infoimp.idl"
  10. This causes MIDL compiler to generate a header file containing
  11. the plain inclusion of include files ( without expansion)
  12. For example:
  13. # include "infoimp.h"
  14. Author:
  15. Murali R. Krishnan ( MuraliK) 14-Nov-1994
  16. History:
  17. --*/
  18. /*
  19. Unique user ID for RPC interface ( generated using uuidgen)
  20. */
  21. [
  22. uuid(2b5c3d80-fcc4-11cd-bec8-00aa0047ae4e),
  23. version(1.0)
  24. ]
  25. //
  26. // the interface keyword
  27. //
  28. interface imports
  29. //
  30. // Definitions of Interface functions which are RPCable
  31. //
  32. {
  33. //
  34. // Include headers to be imported.
  35. //
  36. # define MIDL_PASS /* dummy definition */
  37. # include "infoimp.h"
  38. //
  39. // All .idl files should contain atleast one function prototype.
  40. //
  41. DWORD
  42. DummyFunc(
  43. [ in] DWORD DummyParam
  44. );
  45. }
  46. /******************** End of File ***************************/