mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
aa04307ad1
git-svn-id: https://svn.eduke32.com/eduke32@6074 1a8010ca-5511-0410-912e-c29ae57300e0
24 lines
416 B
C++
24 lines
416 B
C++
// gcc b.c -Lc:/mingw32/lib -lmingw32 -lSDLmain -lSDL
|
|
|
|
#include "compat.h"
|
|
#include "sdl_inc.h"
|
|
|
|
#include "sdlkeytrans.cpp"
|
|
|
|
#undef main
|
|
|
|
int main(void)
|
|
{
|
|
unsigned int i;
|
|
|
|
buildkeytranslationtable();
|
|
|
|
for (i = 0; i < sizeof(keytranslation); i++) {
|
|
if (i>0) printf(", ");
|
|
if (i%8 == 7) printf("\n");
|
|
printf("%d", keytranslation[i]);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|