First pass implementation of new SDL scancode concept, as discussed with

Christian Walther.  Currently only implemented on Mac OS X for sanity
checking purposes.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402715
This commit is contained in:
Sam Lantinga 2008-02-05 07:19:23 +00:00
parent 844280a6a9
commit 02f2e328bd
16 changed files with 1575 additions and 1335 deletions

View file

@ -1531,4 +1531,10 @@ SDL_GetKeyRepeat(int *delay, int *interval)
}
}
int
SDL_EnableUNICODE(int enable)
{
return SDL_EventState(SDL_TEXTINPUT, enable);
}
/* vi: set ts=4 sw=4 expandtab: */