Source code of Windows XP (NT5)
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
1.1 KiB

  1. /****************************************************************************
  2. * ltscomm.idl
  3. *
  4. * This is the interface definition file for the LTS (language-to-speech) Lexicon COM Object
  5. *
  6. * Copyright (c) Microsoft Corporation. All rights reserved.
  7. *****************************************************************************/
  8. //--- Includes --------------------------------------------------------------
  9. import "oaidl.idl";
  10. import "ocidl.idl";
  11. import "sapi.idl";
  12. //--- Link with spcommon.lib
  13. cpp_quote("#pragma comment(lib, \"spcommon.lib\")")
  14. //
  15. //=== CoClass definitions =====================================================
  16. //
  17. [
  18. helpstring("Microsoft LTScommon Object Library"),
  19. uuid(9153CE57-F693-4a8e-8B7C-29C8486566D0),
  20. version(1.0)
  21. ]
  22. library LTSCommLib
  23. {
  24. importlib("stdole32.tlb");
  25. importlib("stdole2.tlb");
  26. //--- SpLTSLexicon ---------------------------------------------------
  27. [
  28. uuid(685879BA-3263-11d3-9C26-00C04F8EF87C),
  29. helpstring("SpLTSLexicon Class")
  30. ]
  31. coclass SpLTSLexicon
  32. {
  33. [default] interface ISpLexicon;
  34. interface ISpObjectWithToken;
  35. };
  36. }