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.

69 lines
1.4 KiB

  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. #if defined (THAIINDEX)
  16. //
  17. // Wordbreaker CLSIDs
  18. // B66F590A-62A5-47db-AFBC-EFDD4FFBDBEB
  19. //
  20. extern "C" GUID CLSID_Thai_Default_WBreaker = {
  21. 0xB66F590A,
  22. 0x62A5,
  23. 0x47db,
  24. {0xAF, 0xBC, 0xEF, 0xDD, 0x4F, 0xFB, 0xDB, 0xEB}
  25. };
  26. //
  27. // Stemmer CLSIDs
  28. // 52CC7D83-1378-4537-A40F-DD4372498E18
  29. //
  30. extern "C" GUID CLSID_Thai_Default_Stemmer = {
  31. 0x52CC7D83,
  32. 0x1378,
  33. 0x4537,
  34. {0xA4, 0x0F, 0xDD, 0x43, 0x72, 0x49, 0x8E, 0x18}
  35. };
  36. #else
  37. //
  38. // Wordbreaker CLSIDs
  39. // cca22cf4-59fe-11d1-bbff-00c04fb97fda
  40. //
  41. extern "C" GUID CLSID_Thai_Default_WBreaker = {
  42. 0xcca22cf4,
  43. 0x59fe,
  44. 0x11d1,
  45. {0xbb, 0xff, 0x00, 0xc0, 0x4f, 0xb9, 0x7f, 0xda}
  46. };
  47. //
  48. // Stemmer CLSIDs
  49. // cedc01c7-59fe-11d1-bbff-00c04fb97fda
  50. //
  51. extern "C" GUID CLSID_Thai_Default_Stemmer = {
  52. 0xcedc01c7,
  53. 0x59fe,
  54. 0x11d1,
  55. {0xbb, 0xff, 0x00, 0xc0, 0x4f, 0xb9, 0x7f, 0xda}
  56. };
  57. #endif
  58. #endif