71 lines
2.2 KiB
C
71 lines
2.2 KiB
C
|
|
||
|
/*++
|
||
|
|
||
|
Copyright (c) 1990-1999 Microsoft Corporation, All Rights Reserved
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
regword.c
|
||
|
|
||
|
|
||
|
++*/
|
||
|
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <immdev.h>
|
||
|
#include <imedefs.h>
|
||
|
|
||
|
/**********************************************************************/
|
||
|
/* ImeRegsisterWord */
|
||
|
/* Return Value: */
|
||
|
/* TRUE - successful, FALSE - failure */
|
||
|
/**********************************************************************/
|
||
|
BOOL WINAPI ImeRegisterWord(
|
||
|
LPCTSTR lpszReading,
|
||
|
DWORD dwStyle,
|
||
|
LPCTSTR lpszString)
|
||
|
{
|
||
|
return (FALSE);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**********************************************************************/
|
||
|
/* ImeUnregsisterWord */
|
||
|
/* Return Value: */
|
||
|
/* TRUE - successful, FALSE - failure */
|
||
|
/**********************************************************************/
|
||
|
BOOL WINAPI ImeUnregisterWord(
|
||
|
LPCTSTR lpszReading,
|
||
|
DWORD dwStyle,
|
||
|
LPCTSTR lpszString)
|
||
|
{
|
||
|
return (FALSE);
|
||
|
}
|
||
|
|
||
|
/**********************************************************************/
|
||
|
/* ImeGetRegsisterWordStyle */
|
||
|
/* Return Value: */
|
||
|
/* number of styles copied/required */
|
||
|
/**********************************************************************/
|
||
|
UINT WINAPI ImeGetRegisterWordStyle(
|
||
|
UINT nItem,
|
||
|
LPSTYLEBUF lpStyleBuf)
|
||
|
{
|
||
|
return (FALSE);
|
||
|
}
|
||
|
|
||
|
/**********************************************************************/
|
||
|
/* ImeEnumRegisterWord */
|
||
|
/* Return Value: */
|
||
|
/* the last value return by the callback function */
|
||
|
/**********************************************************************/
|
||
|
UINT WINAPI ImeEnumRegisterWord(
|
||
|
REGISTERWORDENUMPROC lpfnRegisterWordEnumProc,
|
||
|
LPCTSTR lpszReading,
|
||
|
DWORD dwStyle,
|
||
|
LPCTSTR lpszString,
|
||
|
LPVOID lpData)
|
||
|
{
|
||
|
return (FALSE);
|
||
|
}
|