blob: 78623bd128a09d322a46f802c22165c5a13b381e (
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
|
#ifndef __STDC_VERSION__
//! @file video.S
//!
//! Assembler bindings for SDL2 (SDL_video.h)
#define SDL_WINDOW_SHOWN 0x00000004u
#define SDL_WINDOWPOS_UNDEFINED 0x1FFF0000u
//! @fn SDL_Window * SDL_CreateWindow(const char *title, int x, int y, int w, int h, uint32_t flags)
//! @param title the window title
//! @param x the X position of the window, or SDL_WINDOWPOS_UNDEFINED
//! @param y the Y position of the window, or SDL_WINDOWPOS_UNDEFINED
//! @param w the width of the window
//! @param h the height of the window
//! @param flags 0, or one or more SDL_WindowFlags OR'd together.
//! @return a valid window or NULL on error
.type SDL_CreateWindow, @function
.extern SDL_CreateWindow
//! @fn void SDL_DestroyWindow(SDL_Window *window)
//! @param window the window to destroy
.type SDL_DestroyWindow, @function
.extern SDL_DestroyWindow
#endif
|