diff options
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/dcom.idl | 14 | ||||
-rw-r--r-- | source4/librpc/idl/rot.idl | 13 |
2 files changed, 27 insertions, 0 deletions
diff --git a/source4/librpc/idl/dcom.idl b/source4/librpc/idl/dcom.idl index d9c5a72ab2..d29c7476ef 100644 --- a/source4/librpc/idl/dcom.idl +++ b/source4/librpc/idl/dcom.idl @@ -324,6 +324,20 @@ interface IRemUnknown : IUnknown WERROR ISCMLocalActivator_CreateInstance( ); } +[ + uuid("c6f3ee72-ce7e-11d1-b71e-00c04fc3111a") +] interface IMachineLocalActivator +{ + WERROR IMachineLocalActivator_foo(); +} + +[ + uuid("e60c73e6-88f9-11cf-9af1-0020af6e72f4") +] interface ILocalObjectExporter +{ + WERROR ILocalObjectExporter_Foo(); +} + /* Looks like this is the equivalent of .NET's System.Activator class */ [ diff --git a/source4/librpc/idl/rot.idl b/source4/librpc/idl/rot.idl index d9a67ecbe1..3b3bd6e987 100644 --- a/source4/librpc/idl/rot.idl +++ b/source4/librpc/idl/rot.idl @@ -41,3 +41,16 @@ [out] MInterfacePointer *EnumMoniker ); } + +/* +[ + object, +] interface IRotData : IUnknown +{ + WERROR irotdata_getdata( + [out,size_is(max),length_is(ret)] uint8 *data, + [in] uint32 max, + [out] uint32 ret + ); +} +*/ |