domcomment.h.svn-base
来自「wince c++ 下 开发的 rss 阅读器源代码」· SVN-BASE 代码 · 共 51 行
SVN-BASE
51 行
/* * libsgml -- SGML state machine parsing library. * * Copyright (c) 2002 Uninformed Research (http://www.uninformed.org) * All rights reserved. * * skape * mmiller@hick.org *//** * @defgroup DOMComment Comment * @ingroup DOMNode * * Comment node manipulation. * * @{ */#ifndef _LIBSGML_DOMCOMMENT_H#define _LIBSGML_DOMCOMMENT_H#include "DomNode.h"#ifdef __cplusplusextern "C" {#endif/** * @def DOM_COMMENT * * Defines a DOM_COMMENT as a DOM_NODE. This gives us "inheritance" in C. */#define DOM_COMMENT DOM_NODE/** * Creates a new DOM comment with the provided comment text. * * @param comment [in] The text value for the comment. * @return The constructed DOM comment node. */DOM_COMMENT *domCommentNew(const char *comment);/** * @} */#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?