annotate libvo/w32_common.h @ 26273:8c92e7e4ccd9

command.h: Remove unnecessary includes Remove #include of "mp_core.h" and "input/input.h". Their only use was that functions declared in command.h took pointers to structs defined in those headers. Declare the structs directly as incomplete types instead.
author uau
date Mon, 31 Mar 2008 04:10:54 +0000
parents 0585db9f5b32
children 9e739bdb049c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26011
diff changeset
1 #ifndef MPLAYER_W32_COMMON_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26011
diff changeset
2 #define MPLAYER_W32_COMMON_H
25553
6ac1ece1f9fe Add multiple inclusion guards to all header files that lack them.
diego
parents: 21631
diff changeset
3
26162
0585db9f5b32 Add missing header #includes to fix 'make checkheaders'.
diego
parents: 26029
diff changeset
4 #include <stdint.h>
0585db9f5b32 Add missing header #includes to fix 'make checkheaders'.
diego
parents: 26029
diff changeset
5 #include <windows.h>
0585db9f5b32 Add missing header #includes to fix 'make checkheaders'.
diego
parents: 26029
diff changeset
6
21631
2d3fdf94a50c Fix compilation under MinGW with X11 enabled
reimar
parents: 18174
diff changeset
7 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
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
2d3fdf94a50c Fix compilation under MinGW with X11 enabled
reimar
parents: 18174
diff changeset
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
2734c7331d4e Add missing vo_w32_border prototype
reimar
parents: 25784
diff changeset
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
2d3fdf94a50c Fix compilation under MinGW with X11 enabled
reimar
parents: 18174
diff changeset
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
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26011
diff changeset
20 #endif /* MPLAYER_W32_COMMON_H */