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.

51 lines
1.3 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (c) Microsoft Corporation. All rights reserved.
  5. //
  6. // File: version.idl
  7. //
  8. // Contents: OLE versioning definintions.
  9. //
  10. // History: 09-Jan-95 DaveStr Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #include "idlmulti.h"
  14. [
  15. uuid(6291f800-2bfb-11ce-bb80-08002b36b2b0),
  16. pointer_default(unique)
  17. ]
  18. interface Versioning
  19. {
  20. #pragma pack(4) // for midl & C interop
  21. typedef GUID VERID;
  22. typedef struct tagVERIDARRAY {
  23. DWORD cVerid;
  24. [size_is(cVerid)] GUID verid[];
  25. } VERIDARRAY;
  26. typedef struct tagVERBLOCK {
  27. ULONG iveridFirst;
  28. ULONG iveridMax;
  29. ULONG cblockPrev;
  30. [size_is(cblockPrev)] ULONG *rgiblockPrev;
  31. } VERBLOCK;
  32. typedef struct tagVERCONNECTIONINFO {
  33. DWORD cBlock;
  34. [size_is(cBlock)] VERBLOCK *rgblock;
  35. } VERCONNECTIONINFO;
  36. typedef struct tagVERGRAPH{
  37. VERCONNECTIONINFO blocks;
  38. VERIDARRAY nodes;
  39. } VERGRAPH;
  40. #pragma pack()
  41. }