1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-11 08:37:59 +00:00

Modified functions prototype.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1001 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
bertrand 2001-06-04 17:54:04 +00:00
parent fc3822a396
commit fb21ccfb73

11
asf.h
View File

@ -1,9 +1,9 @@
#ifndef ASF_H
#define ASF_H
#ifndef __ASF_H
#define __ASF_H
#include <inttypes.h>
#include "url.h"
#include "network.h"
#ifndef MIN
#define MIN(a,b) ((a<b)?a:b)
@ -115,6 +115,9 @@ typedef enum {
int asf_http_streaming_type(char *content_type, char *features);
int asf_http_streaming_start( URL_t **url_ref );
int asf_http_streaming_start( streaming_ctrl_t *streaming_ctrl );
int asf_http_streaming_read( streaming_ctrl_t *streaming_ctrl );
int asf_streaming(char *data, int length, int *drop_packet );
#endif