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.

42 lines
872 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997
  5. //
  6. // File: classid.hxx
  7. //
  8. // Contents: Contains CLSID's of text word breakers and stemmers
  9. //
  10. // History: weibz, 11-10-1997 created
  11. //
  12. //--------------------------------------------------------------------------
  13. #if !defined __CLASSID_HXX__
  14. #define __CLASSID_HXX__
  15. //
  16. // Wordbreaker CLSIDs
  17. // cca22cf4-59fe-11d1-bbff-00c04fb97fda
  18. //
  19. extern "C" GUID CLSID_Thai_Default_WBreaker = {
  20. 0xcca22cf4,
  21. 0x59fe,
  22. 0x11d1,
  23. {0xbb, 0xff, 0x00, 0xc0, 0x4f, 0xb9, 0x7f, 0xda}
  24. };
  25. //
  26. // Stemmer CLSIDs
  27. // cedc01c7-59fe-11d1-bbff-00c04fb97fda
  28. //
  29. extern "C" GUID CLSID_Thai_Default_Stemmer = {
  30. 0xcedc01c7,
  31. 0x59fe,
  32. 0x11d1,
  33. {0xbb, 0xff, 0x00, 0xc0, 0x4f, 0xb9, 0x7f, 0xda}
  34. };
  35. #endif