0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

#include appropriate headers instead of locally declaring function prototypes.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28109 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-12-08 00:02:07 +00:00
parent d761fd207a
commit 1f5caf1867
2 changed files with 3 additions and 5 deletions

View File

@ -25,6 +25,8 @@
#include "aspect.h"
#include "mp_msg.h"
#include "m_option.h"
#include "mp_fifo.h"
#include "libvo/sub.h"
#include "input/input.h"
#include "input/mouse.h"
@ -85,9 +87,6 @@ static vo_info_t info =
LIBVO_EXTERN(macosx)
void mplayer_put_key(int code);
void vo_draw_text(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, unsigned char *srca, int stride)
{
switch (image_format)

View File

@ -30,6 +30,7 @@
#include "m_option.h"
#include "mp_fifo.h"
#include "mpbswap.h"
#include "libvo/sub.h"
#include "input/input.h"
#include "input/mouse.h"
@ -128,8 +129,6 @@ enum
#include "osdep/keycodes.h"
void vo_draw_text(int dxs, int dys, void (*draw_alpha) (int x0, int y0, int w, int h, unsigned char *src, unsigned char *srca, int stride));
//PROTOTYPE/////////////////////////////////////////////////////////////////
static OSStatus KeyEventHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData);
static OSStatus MouseEventHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData);