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.

67 lines
1.4 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995
  5. //
  6. // File: classid.hxx
  7. //
  8. // Contents: Contains CLSID's of text word breakers and stemmers
  9. //
  10. // History: 01-July-1996 PatHal Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #if !defined __CLASSID_HXX__
  14. #define __CLASSID_HXX__
  15. //
  16. // Wordbreaker CLSIDs
  17. //
  18. extern "C" GUID CLSID_Japanese_Default_WBreaker = {
  19. 0xcd169790,
  20. 0xd3db,
  21. 0x11cf,
  22. { 0xa0, 0xee, 0x00, 0xaa, 0x00, 0x6e, 0xa5, 0xf3 }
  23. };
  24. extern "C" GUID CLSID_Chinese_Traditional_WBreaker = {
  25. 0x954f1760,
  26. 0xc1bc,
  27. 0x11d0,
  28. { 0x96, 0x92, 0x00, 0xa0, 0xc9, 0x08, 0x14, 0x6e }
  29. };
  30. extern "C" GUID CLSID_Chinese_Simplified_WBreaker = {
  31. 0x9717fc70,
  32. 0xc1bc,
  33. 0x11d0,
  34. { 0x96, 0x92, 0x00, 0xa0, 0xc9, 0x08, 0x14, 0x6e}
  35. };
  36. //
  37. // Stemmer CLSIDs
  38. //
  39. extern "C" GUID CLSID_Japanese_Default_Stemmer = {
  40. 0xcdbeae30,
  41. 0xd3db,
  42. 0x11cf,
  43. { 0xa0, 0xee, 0x00, 0xaa, 0x00, 0x51, 0xfe, 0x20 }
  44. };
  45. extern "C" GUID CLSID_Chinese_Traditional_Stemmer = {
  46. 0x969927e0,
  47. 0xc1bc,
  48. 0x11d0,
  49. { 0x96, 0x92, 0x00, 0xa0, 0xc9, 0x08, 0x14, 0x6e }
  50. };
  51. extern "C" GUID CLSID_Chinese_Simplified_Stemmer = {
  52. 0x9768f960,
  53. 0xc1bc,
  54. 0x11d0,
  55. { 0x96, 0x92, 0x00, 0xa0, 0xc9, 0x08, 0x14, 0x6e }
  56. };
  57. #endif