changeset 904:11879db9d4cc

Added some functions prototypes.
author bertrand
date Tue, 29 May 2001 17:04:52 +0000
parents 7f6641b1b0df
children 4b6f81dbb2da
files asf.h
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/asf.h	Tue May 29 17:03:17 2001 +0000
+++ b/asf.h	Tue May 29 17:04:52 2001 +0000
@@ -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 @@
 	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