Skip to content
Snippets Groups Projects
Commit e70b1838 authored by Bruno Afonso's avatar Bruno Afonso Committed by Alexandre Julliard
Browse files

Added Portuguese keytable.

parent 5574c99b
No related branches found
No related tags found
No related merge requests found
......@@ -127,6 +127,16 @@ static const char main_key_CF[MAIN_LEN][4] =
"zZ","xX","cC","vV","bB","nN","mM",",'_",".","'"
};
/*** Portuguese keyboard layout */
static const char main_key_PT[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;
......@@ -139,6 +149,7 @@ static struct {
{MAKELANGID(LANG_NORWEGIAN,SUBLANG_DEFAULT), 1252, 865, &main_key_NO},
{MAKELANGID(LANG_DANISH,SUBLANG_DEFAULT), 1252, 865, &main_key_DA},
{MAKELANGID(LANG_FRENCH,SUBLANG_FRENCH_CANADIAN),1252,863,&main_key_CF},
{MAKELANGID(LANG_PORTUGUESE,SUBLANG_DEFAULT), 1252, 860, &main_key_PT},
{0} /* sentinel */
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment