Removed a few remaining WINVER checks.
diff --git a/include/imm.h b/include/imm.h
index 937a118..2269258 100644
--- a/include/imm.h
+++ b/include/imm.h
@@ -68,8 +68,6 @@
DECL_WINELIB_TYPE_AW(STYLEBUF)
DECL_WINELIB_TYPE_AW(LPSTYLEBUF)
-#if (WINVER >= 0x040A)
-
typedef struct tagRECONVERTSTRING
{
DWORD dwSize;
@@ -114,8 +112,6 @@
DECL_WINELIB_TYPE_AW(IMEMENUITEMINFO)
DECL_WINELIB_TYPE_AW(LPIMEMENUITEMINFO)
-#endif /* WINVER >= 0x040A */
-
typedef struct _tagCOMPOSITIONFORM
{
@@ -385,8 +381,6 @@
#define IMN_PRIVATE 0x000E
-#if (WINVER >= 0x040A)
-
/* wParam of report message WM_IME_REQUEST */
#define IMR_COMPOSITIONWINDOW 0x0001
#define IMR_CANDIDATEWINDOW 0x0002
@@ -394,8 +388,6 @@
#define IMR_RECONVERTSTRING 0x0004
#define IMR_CONFIRMRECONVERTSTRING 0x0005
-#endif /* WINVER >= 0x040A */
-
/* error code of ImmGetCompositionString */
#define IMM_ERROR_NODATA (-1)
@@ -431,8 +423,6 @@
#define IME_REGWORD_STYLE_USER_LAST 0xFFFFFFFF
-#if (WINVER >= 0x040A)
-
/* dwFlags for ImmAssociateContextEx */
#define IACE_CHILDREN 0x0001
#define IACE_DEFAULT 0x0010
@@ -465,9 +455,6 @@
#define IMFS_UNHILITE MFS_UNHILITE
#define IMFS_DEFAULT MFS_DEFAULT
-#endif /* WINVER >= 0x040A */
-
-
/*
* type of soft keyboard
@@ -479,6 +466,7 @@
HIMC WINAPI ImmAssociateContext(HWND, HIMC);
+BOOL WINAPI ImmAssociateContextEx(HWND, HIMC, DWORD);
BOOL WINAPI ImmConfigureIMEA(HKL, HWND, DWORD, LPVOID);
BOOL WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
#define ImmConfigureIME WINELIB_NAME_AW(ImmConfigureIME)
@@ -555,12 +543,6 @@
BOOL WINAPI ImmUnregisterWordW(HKL, LPCWSTR, DWORD, LPCWSTR);
#define ImmUnregisterWord WINELIB_NAME_AW(ImmUnregisterWord)
-#if (WINVER >= 0x040A)
-
-BOOL WINAPI ImmAssociateContextEx(HWND, HIMC, DWORD);
-
-#endif /* WINVER >= 0x040A */
-
#ifdef __cplusplus
}