mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 18:00:12 +00:00
16 lines
221 B
C
16 lines
221 B
C
#ifndef __WINDOW_H__
|
|
#define __WINDOW_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
float x;
|
|
float y;
|
|
float width;
|
|
float height;
|
|
} window_t;
|
|
|
|
bool window_load(const char *encoded, window_t *window);
|
|
|
|
#endif
|