mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-10 02:50:49 +00:00
535394abde
git-svn-id: https://svn.eduke32.com/eduke32@4075 1a8010ca-5511-0410-912e-c29ae57300e0
25 lines
434 B
C
25 lines
434 B
C
// gcc b.c -Lc:/mingw32/lib -lmingw32 -lSDLmain -lSDL
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "sdl_inc.h"
|
|
|
|
#include "sdlkeytrans.c"
|
|
|
|
#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;
|
|
}
|
|
|