htmemlog.h
来自「firtext搜索引擎源码」· C头文件 代码 · 共 57 行
H
57 行
/* W3C Sample Code Library libwww Generic String Management! Memory Buffered Logging!*//*** (c) COPYRIGHT MIT 199G.** Please first read the full copyright statement in the file COPYRIGH.*//*These functions provide functionality for memory bufferedlogging. This is usefull for tracking data read and written withoutaffecting the timing of the network traffic.This module is implemented by HTMemLog.c, and itis a part of the W3CSample Code Library.*/#ifndef HTMEMLOG_H#define HTMEMLOG_H/*. The Whole Deal.Too much to do right now.*/extern int HTMemLog_open (char * logName, size_t size, BOOL keepOpen);extern int HTMemLog_add (char * buf, size_t len);extern int HTMemLog_flush (void);extern void HTMemLog_close (void);extern HTTraceDataCallback HTMemLog_callback;/**/#endif /* !HTMEMLOG_H *//* @(#) $Id: HTMemLog.html,v 2.6 1998/05/14 02:10:44 frystyk Exp $*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?