赞
踩
李国帅 编于2006-7-10 14:22
--------------------
/* 版权声明 */ #ifndef _OSIP_ACCEPT_H_------------------------------------唯一性标示 #define _OSIP_ACCEPT_H_ #include <osipparser2/headers/osip_content_type.h>----------包含的其他头文件 /** * @file osip_accept.h--------------------------------------头文件名称 * @brief oSIP osip_accept header definition.---------------头文件说明 */ /** * @defgroup oSIP_ACCEPT oSIP accept header definition.-----定义宏 * @ingroup oSIP_HEADERS------------------------------------包含关系 * @{ */ /** * Structure for accept headers.----------------typedef结构体含义 * @var osip_accept_t---------------------------变量 */ typedef osip_content_type_t osip_accept_t; #ifdef __cplusplus------------------------------编译器适应 extern "C" { #endif /** * Allocate an Accept element.-----------------函数定义功能 * @param header The element to work on.-------参数说明 */ #define accept_init(header) osip_content_type_init(header)-函数声明 /** * Get a string representation of an Accept element. * @param header The element to work on. * @param dest A pointer on the new allocated string. */ int osip_accept_to_str(const osip_accept_t * header, char **dest); #ifdef __cplusplus------------------------------编译器适应 } #endif /** @} */ #endif |
----------------------
|
/* * Copyright (c) 2001,XXX有限公司网络应用事业部 * All rights reserved. * * 文件名称:filename.h * 文件标识:见配置管理计划书 * 摘 要:简要描述本文件的内容 * * 当前版本:1.1 * 作 者:输入作者(或修改者)名字 * 完成日期:2001年7月20日 * * 取代版本:1.0 * 原作者 :输入原作者(或修改者)名字 * 完成日期:2001年5月10日 */ |
实际的文件不太需要这么多,并且参照其他分成两部分,版权说明和文件说明
/* * Copyright (c) 2006,XXX技术有限公司 * All rights reserved. * 作 者:peter * / /* * 文件名称: * 完成日期:2006年7月7日 * 摘 要: */ |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。