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.

43 lines
944 B

  1. // raserver.idl : IDL source for raserver.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (raserver.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(2A8175B0-95E6-48AB-B862-10E65A9256B7),
  11. dual,
  12. helpstring("IRASrv Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IRASrv : IDispatch
  16. {
  17. [id(1), helpstring("method StartRA")] HRESULT StartRA([in] BSTR strData, [in] BSTR strPassword);
  18. // [id(2), helpstring("method QueryOS")] HRESULT QueryOS([out, retval] long * pRes);
  19. };
  20. [
  21. uuid(82245486-6A6C-4E74-AA80-E4E8FD535904),
  22. version(1.0),
  23. helpstring("raserver 1.0 Type Library")
  24. ]
  25. library RASERVERLib
  26. {
  27. importlib("stdole32.tlb");
  28. importlib("stdole2.tlb");
  29. [
  30. uuid(FB6CAFD9-61A5-4A97-B4A6-C6A3A3AFCDED),
  31. helpstring("RASrv Class")
  32. ]
  33. coclass RASrv
  34. {
  35. [default] interface IRASrv;
  36. };
  37. };