Problem: A few more compiler warnings. (Axel Bender)
Solution: Add type casts.
# if !defined(_MSC_VER) || (_MSC_VER < 1400)
/* Define HandleToLong for old MS and non-MS compilers if not defined. */
# ifndef HandleToLong
-# define HandleToLong(h) ((long)(h))
+# define HandleToLong(h) ((long)(intptr_t)(h))
# endif
# endif
/* set the v:windowid variable */
info.fMask = MIIM_TYPE | MIIM_ID;
info.wID = item_id;
info.fType = MFT_STRING;
- info.dwTypeData = item_text;
+ info.dwTypeData = (LPTSTR)item_text;
info.cch = (UINT)STRLEN(item_text);
InsertMenuItem(pmenu, item_id, FALSE, &info);
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1345,
/**/
1344,
/**/