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.

70 lines
2.2 KiB

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