comparison src/intl-encap-win32.c @ 4837:493e2aa349fd

imported patch cygwin-headers-cosmetic-1-11-10
author Ben Wing <ben@xemacs.org>
date Tue, 12 Jan 2010 01:42:20 -0600
parents c12b646d84ee
children 50861fea97f6
comparison
equal deleted inserted replaced
4836:5ba666b52ff3 4837:493e2aa349fd
1215 1215
1216 /* NOTE: NT 4.0+ only */ 1216 /* NOTE: NT 4.0+ only */
1217 BOOL 1217 BOOL
1218 qxeUpdateICMRegKey (DWORD arg1, Extbyte * arg2, Extbyte * arg3, UINT arg4) 1218 qxeUpdateICMRegKey (DWORD arg1, Extbyte * arg2, Extbyte * arg3, UINT arg4)
1219 { 1219 {
1220 #if defined (CYGWIN_HEADERS) 1220 #ifdef CYGWIN_HEADERS
1221 /* Cygwin mistakenly declares the second argument as DWORD. */ 1221 /* Cygwin mistakenly declares the second argument as DWORD. */
1222 if (XEUNICODE_P) 1222 if (XEUNICODE_P)
1223 return UpdateICMRegKeyW (arg1, (DWORD) arg2, (LPWSTR) arg3, arg4); 1223 return UpdateICMRegKeyW (arg1, (DWORD) arg2, (LPWSTR) arg3, arg4);
1224 else 1224 else
1225 return UpdateICMRegKeyA (arg1, (DWORD) arg2, (LPSTR) arg3, arg4); 1225 return UpdateICMRegKeyA (arg1, (DWORD) arg2, (LPSTR) arg3, arg4);