search for: http_close

Displaying 2 results from an estimated 2 matches for "http_close".

2002 Jan 02
2
macosx (lots of little changes)
...2 @@ -1,3 +1,4 @@ +#ifndef NO_CURL /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * @@ -328,3 +329,4 @@ &http_tell, &http_close }; +#endif --- ogg123/transport.c.orig Wed Jan 2 01:32:04 2002 +++ ogg123/transport.c Tue Jan 1 15:35:52 2002 @@ -21,10 +21,13 @@ #include "transport.h" extern transport_t file_transport; +#ifdef NO_CURL +transport_t *transports[] = { &file_transport, NULL }; +#else ex...
2002 Jan 02
2
macosx (lots of little changes)
...2 @@ -1,3 +1,4 @@ +#ifndef NO_CURL /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * @@ -328,3 +329,4 @@ &http_tell, &http_close }; +#endif --- ogg123/transport.c.orig Wed Jan 2 01:32:04 2002 +++ ogg123/transport.c Tue Jan 1 15:35:52 2002 @@ -21,10 +21,13 @@ #include "transport.h" extern transport_t file_transport; +#ifdef NO_CURL +transport_t *transports[] = { &file_transport, NULL }; +#else ex...