2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_W32_COMMON_H
|
|
|
|
#define MPLAYER_W32_COMMON_H
|
2008-01-01 22:35:58 +01:00
|
|
|
|
2008-03-07 21:07:15 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
2006-12-17 13:33:09 +01:00
|
|
|
extern HWND vo_w32_window;
|
2003-09-19 16:33:51 +02:00
|
|
|
extern int vo_vm;
|
|
|
|
|
2006-12-17 13:33:09 +01:00
|
|
|
extern int vo_w32_init(void);
|
2003-09-19 16:33:51 +02:00
|
|
|
extern void vo_w32_uninit(void);
|
2005-07-26 15:47:18 +02:00
|
|
|
extern void vo_w32_ontop(void);
|
2008-01-20 10:41:50 +01:00
|
|
|
extern void vo_w32_border(void);
|
2003-09-19 16:33:51 +02:00
|
|
|
extern void vo_w32_fullscreen(void);
|
|
|
|
extern int vo_w32_check_events(void);
|
2006-04-12 16:20:51 +02:00
|
|
|
extern int vo_w32_config(uint32_t, uint32_t, uint32_t);
|
2003-09-19 16:33:51 +02:00
|
|
|
extern void destroyRenderingContext(void);
|
2006-12-17 13:33:09 +01:00
|
|
|
extern void w32_update_xinerama_info(void);
|
2008-01-01 22:35:58 +01:00
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_W32_COMMON_H */
|