1 | #ifndef CURL_STREAM_H |
---|---|
2 | #define CURL_STREAM_H |
3 | fz_stream *fz_open_file_progressive(fz_context *ctx, const char *filename, int kbps, |
4 | void (*on_data)(void*,int), void *arg); |
5 | fz_stream *fz_open_url(fz_context *ctx, const char *url, int kbps, |
6 | void (*on_data)(void*,int), void *arg); |
7 | #endif |
8 |