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.

40 lines
794 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, 9-10-1997 created
  11. //
  12. //--------------------------------------------------------------------------
  13. #if !defined __CLASSID_HXX__
  14. #define __CLASSID_HXX__
  15. //
  16. // Wordbreaker CLSIDs
  17. //
  18. extern "C" GUID CLSID_Korean_Default_WBreaker = {
  19. 0x31b7c920,
  20. 0x2880,
  21. 0x11d0,
  22. { 0x8d, 0x51, 0x00, 0xa0, 0xc9, 0x08, 0xdb, 0xf1 }
  23. };
  24. //
  25. // Stemmer CLSIDs
  26. //
  27. extern "C" GUID CLSID_Korean_Default_Stemmer = {
  28. 0x37c84fa0,
  29. 0xd3db,
  30. 0x11d0,
  31. { 0x8d, 0x51, 0x00, 0xa0, 0xc9, 0x08, 0xdb, 0xf1 }
  32. };
  33. #endif