added messages outputs

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8754 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2004-08-31 22:17:23 +00:00
parent dd658e005d
commit 1cf63426c6

View File

@ -53,11 +53,13 @@ int main(int argc, char **argv)
} else if (operation == 'r') {
Keymap keymap;
keymap.RestoreSystemDefault();
printf("System default key map restored.\n");
return 0;
} else if (operation == 'l') {
Keymap keymap;
keymap.LoadSource(stdin);
keymap.SaveAsCurrent();
printf("Key map loaded.\n");
return 0;
}