Fedsrv.idl 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Fedsrv.idl : IDL source for Fedsrv.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (Fedsrv.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(A9173834-D731-11D2-B2F0-00A0C9C9CCA4),
  10. dual,
  11. helpstring("IAllegianceController Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IAllegianceController : IDispatch
  15. {
  16. [id(1), helpstring("method StartService")] HRESULT StartService();
  17. [id(2), helpstring("method StopService")] HRESULT StopService();
  18. [id(3), helpstring("method InstallService")] HRESULT InstallService(BSTR bstrUser, BSTR bstrPassword);
  19. [id(4), helpstring("method RemoveService")] HRESULT RemoveService();
  20. [id(5), helpstring("method QueryService")] HRESULT QueryService();
  21. [id(6), helpstring("method KillService")] HRESULT KillService();
  22. };
  23. [
  24. uuid(A0D20FFA-D731-11D2-B2F0-00A0C9C9CCA4),
  25. version(1.0),
  26. helpstring("Fedsrv 1.0 Type Library")
  27. ]
  28. library FEDSRVLib
  29. {
  30. importlib("stdole32.tlb");
  31. importlib("stdole2.tlb");
  32. [
  33. uuid(D45E87E0-D731-11D2-B2F0-00A0C9C9CCA4),
  34. helpstring("Allegiance Server Controller Class")
  35. ]
  36. coclass AllegianceController
  37. {
  38. [default] interface IAllegianceController;
  39. };
  40. };