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.

130 lines
2.2 KiB

  1. interface IExtendControlbar
  2. {
  3. [call_as (SetControlbar)]
  4. RemSetControlbar();
  5. [call_as (ControlbarNotify)]
  6. RemControlbarNotify();
  7. }
  8. interface IExtendControlbarRemote
  9. {
  10. [call_as (MenuButtonClick)]
  11. RemMenuButtonClick();
  12. [call_as (PopupMenuClick)]
  13. RemPopupMenuClick();
  14. }
  15. interface IComponentData
  16. {
  17. [call_as (Initialize)]
  18. RemInitialize();
  19. [call_as (CreateComponent)]
  20. RemCreateComponent();
  21. [call_as (Notify)]
  22. RemNotify();
  23. [call_as (GetDisplayInfo)]
  24. RemGetDisplayInfo();
  25. [call_as (CompareObjects)]
  26. RemCompareObjects();
  27. }
  28. interface IComponent
  29. {
  30. [call_as (Notify)]
  31. RemNotify();
  32. [call_as (GetDisplayInfo)]
  33. RemGetDisplayInfo();
  34. [call_as (CompareObjects)]
  35. RemCompareObjects();
  36. }
  37. interface IResultData
  38. {
  39. [call_as (InsertItem)]
  40. RemInsertItem();
  41. [call_as (SetItem)]
  42. RemSetItem();
  43. [call_as (GetItem)]
  44. RemGetItem();
  45. [call_as (GetNextItem)]
  46. RemGetNextItem();
  47. }
  48. interface IConsoleNameSpace
  49. {
  50. [call_as (InsertItem)]
  51. RemInsertItem();
  52. [call_as (SetItem)]
  53. RemSetItem();
  54. [call_as (GetItem)]
  55. RemGetItem();
  56. }
  57. interface IImageList
  58. {
  59. [call_as (ImageListSetIcon)]
  60. RemImageListSetIcon();
  61. [call_as (ImageListSetStrip)]
  62. RemImageListSetStrip();
  63. }
  64. interface IExtendPropertySheet
  65. {
  66. [call_as (CreatePropertyPages)]
  67. RemCreatePropertyPages();
  68. [call_as (QueryPagesFor)]
  69. RemQueryPagesFor();
  70. }
  71. interface IPropertySheetProvider
  72. {
  73. [call_as (CreatePropertySheet)]
  74. RemCreatePropertySheet();
  75. [call_as (FindPropertySheet)]
  76. RemFindPropertySheet();
  77. }
  78. interface IExtendPropertySheet2
  79. {
  80. [call_as (GetWatermarks)]
  81. RemGetWatermarks();
  82. }
  83. interface IExtendContextMenu
  84. {
  85. [call_as (AddMenuItems)]
  86. RemAddMenuItems();
  87. [call_as (Command)]
  88. RemCommand();
  89. }
  90. interface IColumnData
  91. {
  92. [call_as (GetColumnConfigData)]
  93. RemGetColumnConfigData();
  94. [call_as (GetColumnSortData)]
  95. RemGetColumnSortData();
  96. }
  97. interface IExtendPropertySheetRemote
  98. {
  99. [call_as (CreatePropertyPageDefs)]
  100. RemCreatePropertyPageDefs();
  101. }