mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-05 06:03:31 +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
|