Added some functions prototypes.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@905 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
bertrand 2001-05-29 17:04:52 +00:00
parent db73e496b0
commit 529e11ebc6
1 changed files with 6 additions and 0 deletions

6
asf.h
View File

@ -3,6 +3,8 @@
#include <inttypes.h>
#include "url.h"
#ifndef MIN
#define MIN(a,b) ((a<b)?a:b)
#endif
@ -111,4 +113,8 @@ typedef enum {
ASF_Redirector_e
} ASF_StreamType_e;
int asf_http_streaming_type(char *content_type, char *features);
int asf_http_streaming_start( URL_t **url_ref );
#endif