repo.or.cz
/
dasher.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Visual studio 2005 thinks that long long int is 64 bit. The difference between
[dasher.git]
/
Src
/
Win32
/
KeyboardHelper.h
blob
6c62cce82e953de45c5d7a8aaeb01d4d070c815d
1
#ifndef __KEYBOARD_HELPER_H__
2
#define __KEYBOARD_HELPER_H__
3
4
#include <map>
5
6
class
CKeyboardHelper
{
7
public
:
8
CKeyboardHelper
();
9
int
ConvertKeyCode
(
int
iCode
);
10
11
private
:
12
std
::
map
<
int
,
int
>
m_mTable
;
13
};
14
15
#endif