SDL
2.0
testkeys.c
Go to the documentation of this file.
1
/*
2
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
3
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.
7
8
Permission is granted to anyone to use this software for any purpose,
9
including commercial applications, and to alter it and redistribute it
10
freely.
11
*/
12
13
/* Print out all the scancodes we have, just to verify them */
14
15
#include <stdio.h>
16
#include <ctype.h>
17
#include <stdlib.h>
18
#include <string.h>
19
20
#include "
SDL.h
"
21
22
int
23
main
(
int
argc,
char
*argv[])
24
{
25
SDL_Scancode
scancode;
26
27
/* Enable standard application logging */
28
SDL_LogSetPriority
(
SDL_LOG_CATEGORY_APPLICATION
,
SDL_LOG_PRIORITY_INFO
);
29
30
if
(
SDL_Init
(
SDL_INIT_VIDEO
) < 0) {
31
SDL_LogError
(
SDL_LOG_CATEGORY_APPLICATION
,
"Couldn't initialize SDL: %s\n"
,
SDL_GetError
());
32
exit(1);
33
}
34
for
(scancode = 0; scancode <
SDL_NUM_SCANCODES
; ++scancode) {
35
SDL_Log
(
"Scancode #%d, \"%s\"\n"
, scancode,
36
SDL_GetScancodeName
(scancode));
37
}
38
SDL_Quit
();
39
return
(0);
40
}
SDL_GetError
#define SDL_GetError
Definition:
SDL_dynapi_overrides.h:113
SDL_LogError
#define SDL_LogError
Definition:
SDL_dynapi_overrides.h:36
SDL_Log
#define SDL_Log
Definition:
SDL_dynapi_overrides.h:31
main
int main(int argc, char *argv[])
Definition:
testkeys.c:23
SDL_Quit
#define SDL_Quit
Definition:
SDL_dynapi_overrides.h:58
SDL_LOG_PRIORITY_INFO
Definition:
SDL_log.h:106
SDL_LogSetPriority
#define SDL_LogSetPriority
Definition:
SDL_dynapi_overrides.h:236
SDL_GetScancodeName
#define SDL_GetScancodeName
Definition:
SDL_dynapi_overrides.h:222
SDL_NUM_SCANCODES
Definition:
SDL_scancode.h:407
SDL_Init
#define SDL_Init
Definition:
SDL_dynapi_overrides.h:54
SDL.h
SDL_LOG_CATEGORY_APPLICATION
Definition:
SDL_log.h:66
SDL_Scancode
SDL_Scancode
The SDL keyboard scancode representation.
Definition:
SDL_scancode.h:43
SDL_INIT_VIDEO
#define SDL_INIT_VIDEO
Definition:
SDL.h:78
test
testkeys.c
Generated by
1.8.13