2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_W32_COMMON_H
|
|
|
|
#define MPLAYER_W32_COMMON_H
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2008-03-07 20:07:15 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
2006-12-17 12:33:09 +00:00
|
|
|
extern HWND vo_w32_window;
|
2003-09-19 14:33:51 +00:00
|
|
|
extern int vo_vm;
|
|
|
|
|
2008-12-03 23:01:03 +00:00
|
|
|
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);
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_W32_COMMON_H */
|