htschunk.h
来自「www工具包」· C头文件 代码 · 共 56 行
H
56 行
/* W3C Sample Code Library libwww Stream to Chunk Converter! Stream to Chunk Converter!*//*** (c) COPYRIGHT MIT 1995.** Please first read the full copyright statement in the file COPYRIGH.*//*This stream converts a Stream obejct into aChunk object. Chunks are dynamic streams so thisis in other words a conversion from a stream based model to a dynamic databuffer model for handling a downloaded object. It is for the caller of thisstream to free the chunk.If max_size is 0 then we use a default size, if -1 then there is no limit.This module is implemented by HTSChunk.c, and itis a part of the W3C Sample CodeLibrary.*/#ifndef HTSCHUNK_H#define HTSCHUNK_H#include "HTChunk.h"#include "HTStream.h"extern HTStream * HTStreamToChunk (HTRequest * request, HTChunk ** chunk, int max_size);/*End of definition module*/#endif /* HTSCHUNK_H *//* @(#) $Id: HTSChunk.html,v 2.4 1998/05/14 02:11:03 frystyk Exp $*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?