blob: 41c0712470452540429011942ecc198ca67183d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef MPLAYER_W32_COMMON_H
#define MPLAYER_W32_COMMON_H
#include <stdint.h>
#include <windows.h>
extern HWND vo_w32_window;
extern int vo_vm;
int vo_w32_init(void);
void vo_w32_uninit(void);
void vo_w32_ontop(void);
void vo_w32_border(void);
void vo_w32_fullscreen(void);
int vo_w32_check_events(void);
int vo_w32_config(uint32_t, uint32_t, uint32_t);
void destroyRenderingContext(void);
void w32_update_xinerama_info(void);
#endif /* MPLAYER_W32_COMMON_H */
|