blob: f0c02e25ae6c428fb851e37b578e445e9fba100a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#pragma once
// -- internal --
// private
#include "irodeo_window_t.h"
// -- external --
#include "SDL.h"
#include "SDL_syswm.h"
SDL_Window *
irodeo_window_get(void);
SDL_Surface *
irodeo_window_surface_get(void);
void
irodeo_window_screen_width_setVar(uint16_t width);
void
irodeo_window_screen_height_setVar(uint16_t height);
SDL_Window *
irodeo_window_get(void);
SDL_Surface *
irodeo_window_surface_get(void);
SDL_SysWMinfo
irodeo_window_wmi_get(void);
|