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.

65 lines
2.4 KiB

  1. /*************************************************
  2. * regword.c *
  3. * *
  4. * Copyright (C) 1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. #include <windows.h>
  8. #include <immdev.h>
  9. #include "imeattr.h"
  10. #include "imedefs.h"
  11. #include "imerc.h"
  12. /**********************************************************************/
  13. /* ImeRegsisterWord */
  14. /* Return Value: */
  15. /* TRUE - successful, FALSE - failure */
  16. /**********************************************************************/
  17. BOOL WINAPI ImeRegisterWord(
  18. LPCTSTR lpszReading,
  19. DWORD dwStyle,
  20. LPCTSTR lpszString)
  21. {
  22. return (FALSE);
  23. }
  24. /**********************************************************************/
  25. /* ImeUnregsisterWord / UniImeUnregisterWord */
  26. /* Return Value: */
  27. /* TRUE - successful, FALSE - failure */
  28. /**********************************************************************/
  29. BOOL WINAPI ImeUnregisterWord(
  30. LPCTSTR lpszReading,
  31. DWORD dwStyle,
  32. LPCTSTR lpszString)
  33. {
  34. return (FALSE);
  35. }
  36. /**********************************************************************/
  37. /* ImeGetRegsisterWordStyle / UniImeGetRegsisterWordStyle */
  38. /* Return Value: */
  39. /* number of styles copied/required */
  40. /**********************************************************************/
  41. UINT WINAPI ImeGetRegisterWordStyle(
  42. UINT nItem,
  43. LPSTYLEBUF lpStyleBuf)
  44. {
  45. return (FALSE);
  46. }
  47. /**********************************************************************/
  48. /* ImeEnumRegisterWord */
  49. /* Return Value: */
  50. /* the last value return by the callback function */
  51. /**********************************************************************/
  52. UINT WINAPI ImeEnumRegisterWord(
  53. REGISTERWORDENUMPROC lpfnRegisterWordEnumProc,
  54. LPCTSTR lpszReading,
  55. DWORD dwStyle,
  56. LPCTSTR lpszString,
  57. LPVOID lpData)
  58. {
  59. return (FALSE);
  60. }