Slide 65
Slide 65 text
Creating our first header file for libsdl2
#define FFI_SCOPE "sdl"
#define FFI_LIB "libSDL2-2.0.so"
typedef uint32_t Uint32;
typedef struct SDL_Window SDL_Window;
SDL_Window *SDL_CreateWindow(
const char *title,
int x, int y, int w, int h,
Uint32 flags);
sdl.h