软件著作权-源代码范本
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
软件著作权-源代码范本
注意事项:常见的源代码包含:C语言,VB,C++,JAVA,.NET等。
提交的代码必须是源代码的开头载入程序,第30页必须断开,第60页是软
件的程序结尾,代码中不得出现与申请表内容不符合的日期,著作权人,软件名
字等,不能出现开源代码,不能出现任何版权纠纷。
格式要求:一、源代码应提交前、后各连续30页,不足60页的,应当全部提交。
、源代码页眉应标注软件的名称和版本号,应当与申请表中名称完全一致,页
眉右上应标注页码,源代码每页不少于50行。
范例如下:
#i nclude
#in elude
#defi ne NS_MAIN 1
#i nclude
#ifdef DLZ
#in clude
#en dif
static tybs_boolean_t wan t_stats = TYBS_FALSE;
static char
static char
static char
static char
static un sig ned program_ name[TYBS_DIR_NAMEMAX] = "n amed";
absolute_co nffile[TYBS_DIR_PATHMAX];
saved_comma nd_li ne[512];
versio n[512];
maxsocks = 0;
n s_ma in _earlywar nin g(c onst char *format, ...) {
va_list args; va_start(args, format); if (ns_g」ctx != NULL) { tybs_log_vwrite( ns_g」ctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN, TYBS_LOG_W ARNING, format, args);
} else {
fprin tf(stderr, "%s: ", program_ name);
vfprin tf(stderr, format, args);
fprin tf(stderr, "\n");
fflush(stderr);
}
va_e nd(args);
}
Void n s_ma in _earlyfatal(c onst char *format, ...) {
va_list args; va_start(args, format);
if (ns_g」ctx != NULL) {
tybs_log_vwrite( ns_g」ctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, format, args);
tybs_log_write( ns_g」ctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, "exit ing (due to early fatal error)");
} else {
fprin tf(stderr, "%s: ", program, name);
vfprin tf(stderr, format, args);
fprin tf(stderr, "\n"); fflush(stderr);
}
va_e nd(args);
exit(1);
}
static void
assert ion _failed(c onst char *file, in t li ne, tybs_assert ion type_t type,
const char *cond)
{
if (ns_g」ctx != NULL) {
tybs_assert ion _setcallback(NULL); tybs_log_write( ns_g」ctx, NS_LOGCATEGORY_GENERAL,
NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, "%s:%d: %s(%s) failed", file, li ne, tybs_assert
ion _typetotext(type), con d); tybs_log_write( ns_g」ctx, NS_LOGCATEGORY_GENERAL,
NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, "exit ing (due to asserti on failure)");
} else {
fprin tf(stderr, "%s:%d: %s(%s) failed\n",
file, li ne, tybs_assert ion _typetotext(type), con d); fflush(stderr);
}
if (n s_g_coreok)
abort();
exit(1);
}
static void
library_fatal_error(c onst char *file, i nt li ne, const char *format,
va_list args) TYBS_FORMAT_PRINTF(3, 0);
static void
library_fatal_error(c onst char *file, i nt li ne, const char *format,
va_list args)
{
if (ns_g」ctx != NULL) {
tybs_error_setfatal(NULL); tybs_log_write( ns_g」ctx, NS_LOGCATEGORY_GENERAL,
NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, "%s:%d: fatal error:", file, li ne);
tybs_log_vwrite( ns_g」ctx, NS_LOGCATEGORY_GENERAL,
NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, format, args);
tybs_log_write( ns_g」ctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN, TYBS_LOG_CRITICAL, "exit ing (due to fatal error in library)");
} else {
fprintf(stderr, "%s:%d: fatal error: ", file, line);
vfprin tf(stderr, format, args);
fprin tf(stderr, "\n");
fflush(stderr);
}
if (n s_g_coreok)
abort();
exit(1);
}
static void
library_ un expected_error(c onst char *file, i nt li ne, const char *format, va_list args)
TYBS_FORMAT_PRINTF(3, 0);