資源簡介
打包解包整理vs2013.zip

代碼片段和文件信息
#include?“asert.h“
#include?
#if?defined(_DEBUG)
#else
#include?“windows.h“
#endif
#if?0
#include?
#ifdef?FORMAT
#undef?FORMAT
#endif
#ifdef?_WIN32?
//?vc
#define?FORMAT(_ARR_?_SIZE_?_FMT_)\
memset(_ARR_?0?_SIZE_);\
va_list?list;\
va_start(list?_FMT_);\
int?__count?=?_vsnprintf(_ARR_?(_SIZE_)?-?1?_FMT_?list);\
if?(__count?>=?0)?_ARR_[__count]?=?0;?else?_ARR_[_SIZE_?-?1]?=?0;\
va_end(list)
#else?
//?gcc
#define?FORMAT(_ARR_?_SIZE_?_FMT_)\
memset(_ARR_?0?_SIZE_);\
va_list?list;\
va_start(list?_FMT_);\
vsnprintf(_ARR_?_SIZE_?_FMT_?list);\
va_end(list)
#endif
#endif
static?const?int?s_buffSize?=?0x04ff;
static?char*?s_buff?=?(char*)malloc(s_buffSize);
const?char*?ccc_toLog(const?char*?format?...)
{
memset(s_buff?0?s_buffSize);
va_list?ap;
va_start(ap?format);
vsnprintf(s_buff?s_buffSize?format?ap);
va_end(ap);
s_buff[strlen(s_buff)]?=?‘\n‘;
return?s_buff;
}
void?ccc_msgbox(const?std::string?&title?const?char*?format?...)
{
memset(s_buff?0?s_buffSize);
va_list?ap;
va_start(ap?format);
vsnprintf(s_buff?s_buffSize?format?ap);
va_end(ap);
MessageBoxA(0?s_buff?title.data()?MB_OK);
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-03-10?20:30??打包解包整理vs2013\
?????目錄???????????0??2017-10-31?17:24??打包解包整理vs2013\asert\
?????文件????????1221??2017-10-17?16:21??打包解包整理vs2013\asert\asert.cpp
?????文件?????????850??2017-10-17?16:14??打包解包整理vs2013\asert\asert.h
?????文件????????6859??2017-10-20?16:15??打包解包整理vs2013\asert\efolder.cpp
?????文件?????????223??2017-10-20?16:15??打包解包整理vs2013\asert\efolder.h
?????文件????????2839??2017-10-16?22:50??打包解包整理vs2013\asert\stringutils.cpp
?????文件?????????713??2017-10-18?15:10??打包解包整理vs2013\asert\stringutils.h
?????文件?????????945??2017-10-16?16:12??打包解包整理vs2013\asert\template.h
?????文件?????????338??2017-10-16?22:50??打包解包整理vs2013\asert\tostring.cpp
?????文件?????????108??2017-10-16?16:19??打包解包整理vs2013\asert\tostring.h
?????目錄???????????0??2017-11-07?01:33??打包解包整理vs2013\cpp\
?????文件????????5345??2017-11-07?01:33??打包解包整理vs2013\cpp\WdfReader.cpp
?????文件?????????911??2017-10-25?18:23??打包解包整理vs2013\cpp\WdfReader.h
?????文件?????????319??2017-10-21?14:22??打包解包整理vs2013\cpp\_cppinc.h
?????目錄???????????0??2018-02-28?09:58??打包解包整理vs2013\txt\
?????文件????????2973??2018-01-24?12:17??打包解包整理vs2013\txt\eModel.h
?????文件????????7558??2017-11-07?23:41??打包解包整理vs2013\txt\TxtChat.cpp
?????文件????????1950??2017-11-07?23:41??打包解包整理vs2013\txt\TxtChat.h
?????文件???????85154??2017-11-07?23:41??打包解包整理vs2013\txt\TxtItem.cpp
?????文件?????????975??2017-11-07?23:41??打包解包整理vs2013\txt\TxtItem.h
?????文件???????10119??2017-11-07?23:41??打包解包整理vs2013\txt\TxtJiaju.cpp
?????文件?????????571??2017-11-07?23:41??打包解包整理vs2013\txt\TxtJiaju.h
?????文件???????71231??2017-11-07?23:44??打包解包整理vs2013\txt\TxtMap.cpp
?????文件????????3666??2017-11-07?23:41??打包解包整理vs2013\txt\TxtMap.h
?????文件???????12089??2017-11-07?23:41??打包解包整理vs2013\txt\TxtMenpai.cpp
?????文件????????1062??2017-11-07?23:41??打包解包整理vs2013\txt\TxtMenpai.h
?????文件??????143380??2017-11-07?23:41??打包解包整理vs2013\txt\TxtModelPet.cpp
?????文件????????2980??2018-01-24?12:29??打包解包整理vs2013\txt\TxtModelPet.h
?????文件??????168363??2018-02-28?09:58??打包解包整理vs2013\txt\TxtModelPet2.cpp
?????文件???????13398??2017-11-07?23:41??打包解包整理vs2013\txt\TxtModelRole.cpp
............此處省略29個文件信息
評論
共有 條評論