Add missing VS2012 test projects; update VS2010 and VS2012 solutions; update keybord suite for VS compiler warnings
2 Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
13 /* Print out all the scancodes we have, just to verify them */
23 main(int argc, char *argv[])
25 SDL_Scancode scancode;
27 if (SDL_Init(SDL_INIT_VIDEO) < 0) {
28 fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
31 for (scancode = 0; scancode < SDL_NUM_SCANCODES; ++scancode) {
32 printf("Scancode #%d, \"%s\"\n", scancode,
33 SDL_GetScancodeName(scancode));