Commit 68ff9a94 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

include: Move ddk/imm.h to immdev.h.

parent 667d889d
......@@ -33,7 +33,7 @@
#include "winerror.h"
#include "wine/debug.h"
#include "imm.h"
#include "ddk/imm.h"
#include "immdev.h"
#include "winnls.h"
#include "winreg.h"
#include "wine/list.h"
......
......@@ -25,7 +25,7 @@
#include "winuser.h"
#include "wingdi.h"
#include "imm.h"
#include "ddk/imm.h"
#include "immdev.h"
BOOL WINAPI ImmSetActiveContext(HWND, HIMC, BOOL);
......
......@@ -21,7 +21,7 @@
#include "user_private.h"
#include "controls.h"
#include "imm.h"
#include "ddk/imm.h"
#include "immdev.h"
#include "wine/debug.h"
......
......@@ -27,7 +27,7 @@
#include <pthread.h>
#include "win32u_private.h"
#include "ntuser_private.h"
#include "ddk/imm.h"
#include "immdev.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(imm);
......
......@@ -33,7 +33,7 @@
#include "hidusage.h"
#include "dbt.h"
#include "dde.h"
#include "ddk/imm.h"
#include "immdev.h"
#include "wine/server.h"
#include "wine/debug.h"
......
......@@ -36,7 +36,7 @@
#include "macdrv_dll.h"
#include "imm.h"
#include "ddk/imm.h"
#include "immdev.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(imm);
......
......@@ -43,7 +43,7 @@
#include "x11drv_dll.h"
#include "wine/debug.h"
#include "imm.h"
#include "ddk/imm.h"
#include "immdev.h"
WINE_DEFAULT_DEBUG_CHANNEL(imm);
......
......@@ -195,7 +195,6 @@ SOURCES = \
ddk/hidport.h \
ddk/hidsdi.h \
ddk/hidtypes.h \
ddk/imm.h \
ddk/mountmgr.h \
ddk/ndis.h \
ddk/ntddcdvd.h \
......@@ -359,6 +358,7 @@ SOURCES = \
imagehlp.h \
ime.h \
imm.h \
immdev.h \
imnact.idl \
imnxport.idl \
in6addr.h \
......
......@@ -16,14 +16,15 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef _DDKIMM_H_
#define _DDKIMM_H_
#ifndef __WINE_IMMDEV_H
#define __WINE_IMMDEV_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _tagINPUTCONTEXT {
typedef struct tagINPUTCONTEXT
{
HWND hWnd;
BOOL fOpen;
POINT ptStatusWndPos;
......@@ -46,7 +47,8 @@ typedef struct _tagINPUTCONTEXT {
DWORD dwReserve[3];
} INPUTCONTEXT, *LPINPUTCONTEXT;
typedef struct _tagIMEINFO {
typedef struct tagIMEINFO
{
DWORD dwPrivateDataSize;
DWORD fdwProperty;
DWORD fdwConversionCaps;
......@@ -56,7 +58,8 @@ typedef struct _tagIMEINFO {
DWORD fdwSelectCaps;
} IMEINFO, *LPIMEINFO;
typedef struct tagCOMPOSITIONSTRING {
typedef struct tagCOMPOSITIONSTRING
{
DWORD dwSize;
DWORD dwCompReadAttrLen;
DWORD dwCompReadAttrOffset;
......@@ -84,7 +87,8 @@ typedef struct tagCOMPOSITIONSTRING {
DWORD dwPrivateOffset;
} COMPOSITIONSTRING, *LPCOMPOSITIONSTRING;
typedef struct tagGUIDELINE {
typedef struct tagGUIDELINE
{
DWORD dwSize;
DWORD dwLevel;
DWORD dwIndex;
......@@ -94,7 +98,8 @@ typedef struct tagGUIDELINE {
DWORD dwPrivateOffset;
} GUIDELINE, *LPGUIDELINE;
typedef struct tagCANDIDATEINFO {
typedef struct tagCANDIDATEINFO
{
DWORD dwSize;
DWORD dwCount;
DWORD dwOffset[32];
......@@ -170,4 +175,4 @@ DWORD WINAPI ImeGetImeMenuItems(HIMC, DWORD, DWORD, LPIMEMENUITEMINFOW, LPIMEMEN
} /* extern "C" */
#endif
#endif /* _DDKIMM_H_ */
#endif /* __WINE_IMMDEV_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment