aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/utility/win_keys.h
diff options
context:
space:
mode:
authorMarisa-Chan2014-11-12 14:43:04 +0600
committerMarisa-Chan2014-11-12 14:43:04 +0600
commit9e9b89071f9a07e2784bf52ef976d6560bf56e67 (patch)
treeb094a4b7ff964fa58299b283a82f16a776870610 /engines/zvision/utility/win_keys.h
parent9b88ab15dfff651007f9c6bcad1f5e646a4fa662 (diff)
downloadscummvm-rg350-9e9b89071f9a07e2784bf52ef976d6560bf56e67.tar.gz
scummvm-rg350-9e9b89071f9a07e2784bf52ef976d6560bf56e67.tar.bz2
scummvm-rg350-9e9b89071f9a07e2784bf52ef976d6560bf56e67.zip
ZVISION: Implement function for convertion of scummvm KeyCode to win vkKey
Diffstat (limited to 'engines/zvision/utility/win_keys.h')
-rw-r--r--engines/zvision/utility/win_keys.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/engines/zvision/utility/win_keys.h b/engines/zvision/utility/win_keys.h
new file mode 100644
index 0000000000..a79a03a07b
--- /dev/null
+++ b/engines/zvision/utility/win_keys.h
@@ -0,0 +1,32 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef ZVISION_WINKEY_H
+#define ZVISION_WINKEY_H
+
+#include "common/keyboard.h"
+
+namespace ZVision {
+uint8 VKkey(Common::KeyCode scumm_key);
+} // End of namespace ZVision
+
+#endif