Add Russian translation provided by Валерий Крувялис <valkru@mail.ru>
[xiph-mirror.git] / vorbis-plugins / winamp / httpstream.h
blob14cda1d40d0cd232ac114c6933610aec183df2e3
1 /*********************************************
3 * httpstream.h
5 * HTTP streaming support for OggVorbis by Aaron Porter <aaron@javasource.org>
6 * Licensed under terms of the LGPL
8 *********************************************/
10 #ifndef _OGG_VORBIS_HTTP_STREAMING_
11 #define _OGG_VORBIS_HTTP_STREAMING_
13 void httpInit();
14 void httpSetHwnd(HWND hWnd);
15 void httpSetProxy(const char *proxy);
16 void httpShutdown();
18 int isOggUrl(const char *url);
20 char * httpGetTitle(const char *url);
22 void * httpStartBuffering(const char *url, OggVorbis_File * input_file, BOOL showMessages);
23 void httpStopBuffering();
25 void setHttpVars();
27 #endif