Mercurial > mplayer.hg
annotate libvo/w32_common.h @ 25914:b102c1f10728
Update the test for ivtv output driver.
Linux kernel 2.6.24 now includes ivtv,
but the vo_ivtv.c fails to compile with it.
Test for structures and ioctl()s used in the current driver.
author | iive |
---|---|
date | Fri, 01 Feb 2008 20:14:53 +0000 |
parents | 2734c7331d4e |
children | 64863a1618e5 |
rev | line source |
---|---|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21631
diff
changeset
|
1 #ifndef W32COMMON_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21631
diff
changeset
|
2 #define W32COMMON_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21631
diff
changeset
|
3 |
10880
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
4 extern uint32_t o_dwidth; |
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
5 extern uint32_t o_dheight; |
21631 | 6 extern HWND vo_w32_window; |
10880
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
7 extern HDC vo_hdc; |
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
8 extern int vo_vm; |
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
9 |
21631 | 10 extern int vo_w32_init(void); |
10880
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
11 extern void vo_w32_uninit(void); |
16109
519a307e3ccf
OpenGL fixes for windows and vo_gl.c ported to windows.
reimar
parents:
14142
diff
changeset
|
12 extern void vo_w32_ontop(void); |
25786 | 13 extern void vo_w32_border(void); |
10880
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
14 extern void vo_w32_fullscreen(void); |
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
15 extern int vo_w32_check_events(void); |
18080
7327ead03337
fixes and cleanup for windows fullscreen switching (restore old position,
reimar
parents:
16109
diff
changeset
|
16 extern int vo_w32_config(uint32_t, uint32_t, uint32_t); |
10880
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
diff
changeset
|
17 extern void destroyRenderingContext(void); |
21631 | 18 extern void w32_update_xinerama_info(void); |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21631
diff
changeset
|
19 |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21631
diff
changeset
|
20 #endif /* W32COMMON_H */ |