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.

46 lines
1.2 KiB

  1. // ldm.idl : IDL source for ldm.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ldm.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. import "wbemcli.idl";
  8. [
  9. object,
  10. uuid(58D36845-C4BE-4052-B5B0-48368FBDD65D),
  11. dual,
  12. helpstring("ISAKeypadController Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface ISAKeypadController : IDispatch
  16. {
  17. [id(1), helpstring("method LoadDefaults")] HRESULT LoadDefaults();
  18. [id(2), helpstring("method SetKey")] HRESULT SetKey([in] LONG lKeyID, [in] LONG lMessage, [in] BOOL fShiftKeyDown);
  19. [id(3), helpstring("method GetKey")] HRESULT GetKey([in] LONG lKeyID, [out] LONG * lMessage, [out] BOOL * fShiftKeyDown);
  20. };
  21. [
  22. uuid(AF841DF7-8FF4-45e3-B152-E8FCA230983B),
  23. version(1.0),
  24. helpstring("LDM 1.0 Type Library")
  25. ]
  26. library LDMLib
  27. {
  28. importlib("stdole32.tlb");
  29. importlib("stdole2.tlb");
  30. [
  31. uuid(7D67E4DF-9815-4883-99D3-0E195CC39AFE),
  32. helpstring("SAKeypadController Class")
  33. ]
  34. coclass SAKeypadController
  35. {
  36. [default] interface ISAKeypadController;
  37. };
  38. };