SDL  2.0
hello.c
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Collabora Ltd.
3  * SPDX-License-Identifier: Zlib
4  * (see "zlib/libpng" in debian/copyright)
5  */
6 
7 #include <SDL.h>
8 
9 int
10 main (int argc, char **argv)
11 {
12  if (SDL_Init(0) != 0) {
13  SDL_Log("SDL_Init: %s", SDL_GetError());
14  return 1;
15  }
16 
17  SDL_Log("Hello, world!");
18  SDL_Quit();
19  return 0;
20 }
SDL.h
SDL_GetError
#define SDL_GetError
Definition: SDL_dynapi_overrides.h:113
SDL_Log
#define SDL_Log
Definition: SDL_dynapi_overrides.h:31
SDL_Quit
#define SDL_Quit
Definition: SDL_dynapi_overrides.h:58
SDL_Init
#define SDL_Init
Definition: SDL_dynapi_overrides.h:54
main
int main(int argc, char **argv)
Definition: hello.c:10