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.

29 lines
848 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: istem.idl
  7. //
  8. // Contents: IStemmer interface definition
  9. //
  10. // History: 24-Apr-95 SitaramR Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #include "idlmulti.h"
  14. LOCAL_INTERFACE(efbaf140-7f42-11ce-be57-00aa0051fe20)
  15. interface IStemmer: IUnknown
  16. {
  17. HRESULT Init( [in] ULONG ulMaxTokenSize,
  18. [out] BOOL * pfLicense );
  19. HRESULT GenerateWordForms( [in] WCHAR const * pwcInBuf,
  20. [in] ULONG cwc,
  21. [in] IWordFormSink * pStemSink );
  22. HRESULT GetLicenseToUse( [out, string] WCHAR const ** ppwcsLicense );
  23. }