This patch offers better wine support for Dutch Keyboards. Most IBM computers sold in the Netherlands have Dutch keyboards. Can this be included please. -- grant williamson <traxtopel@xxxxxxxxxxx>
--- dlls/x11drv/keyboard.c.orig 2003-11-15 11:59:49.000000000 +0100 +++ dlls/x11drv/keyboard.c 2003-11-15 23:50:41.000000000 +0100 @@ -655,7 +655,17 @@ "qQæð","wWä\"","eEÓ®","rR¾±","tTи","yYÑí","uUÕê","iIó","oO¹Ï","pPÂ","[{º°","]}Å,", "aA¿Ä","sS˦","dD¡¯","fF´â","gGà¬","hHéç","jJèë","kKÒÉ","lLÊÈ",";:Ç«","\'\"§.","\\|£¥", "zZ¼(","xX»)","cCá©","vVÍÎ","bBÚ","nN×ì","mM·?",",<Á²",".>ãÌ","/?½Æ" -}; +}; + +/*** Dutch keyboard layout (contributed by traxtopel) ***/ +static const char main_key_NL[MAIN_LEN][4] = +{ + "@§","1!","2\"","3#","4$","5%","6&","7_","8(","9)","0'","/?","°~", + "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","¨~","*|", + "aA","sS","dD","fF","gG","hH","jJ","kK","lL","+±","'`","<>", + "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-=", + "[]" +}; /*** VNC keyboard layout */ static const WORD main_key_scan_vnc[MAIN_LEN] = @@ -736,6 +746,7 @@ {"VNC keyboard layout", &main_key_vnc, &main_key_scan_vnc, &main_key_vkey_vnc}, {"Greek keyboard layout", &main_key_EL, &main_key_scan_qwerty, &main_key_vkey_qwerty}, {"Thai (Kedmanee) keyboard layout", &main_key_th, &main_key_scan_qwerty, &main_key_vkey_qwerty}, + {"Dutch keyboard layout", &main_key_NL, &main_key_scan_qwerty, &main_key_vkey_qwerty}, {NULL, NULL, NULL, NULL} /* sentinel */ };