00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _BLT_HTTP_NETWORK_STREAM_H_
00011 #define _BLT_HTTP_NETWORK_STREAM_H_
00012
00013
00014
00015
00016 #include "BltTypes.h"
00017 #include "BltModule.h"
00018 #include "BltMedia.h"
00019 #include "BltNetworkInputSource.h"
00020
00021
00022
00023
00024 #if defined(__cplusplus)
00025 extern "C" {
00026 #endif
00027
00028 BLT_Result
00029 BLT_HttpNetworkStream_Create(const char* url,
00030 BLT_Core* core,
00031 ATX_InputStream** stream,
00032 BLT_NetworkInputSource** source,
00033 BLT_MediaType** media_type);
00034
00035 #if defined(__cplusplus)
00036 }
00037 #endif
00038
00039 #endif