Commit 05eb8b51 authored by José Marcos López's avatar José Marcos López Committed by Alexandre Julliard

Added Spanish keyboard layout.

parent 96b93bb7
......@@ -170,6 +170,16 @@ static const char main_key_RU[MAIN_LEN][4] =
"zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?"
};
/*** Spanish keyboard layout (contributed by Jos Marcos Lpez) */
static const char main_key_ES[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",",;",".:","-_",
"<>"
};
/*** Layout table. Add your keyboard mappings to this list */
static struct {
WORD lang, ansi_codepage, oem_codepage;
......@@ -186,6 +196,7 @@ static struct {
{MAKELANGID(LANG_PORTUGUESE,SUBLANG_DEFAULT), 1252, 860, &main_key_PT},
{MAKELANGID(LANG_FINNISH,SUBLANG_DEFAULT), 1252, 850, &main_key_FI},
{MAKELANGID(LANG_RUSSIAN,SUBLANG_DEFAULT), 1251, 866, &main_key_RU},
{MAKELANGID(LANG_SPANISH,SUBLANG_DEFAULT), 1252, 850, &main_key_ES},
{0} /* sentinel */
};
......
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