|
|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
通常来讲,非常实用,不用模板创建的话,也可以直接复制粘贴进去使用哦!
V& _: _. j t. V4 y! v* z! E5 Y% T* U- D% j# t
[mw_shl_code=c,true]
& L: f( O3 t L#include <stdarg.h>
$ I+ y0 d( S, E( c9 s* i, {+ @* r* C. }4 Y' e
static void ECHO(const char *format, ...)" V# \; W5 s/ u1 ^
{
0 S9 \( v1 r5 ~4 t0 L$ G char msg[UF_UI_MAX_STRING_LEN+1];. A$ M* F8 ^; K' a8 q0 R/ V
va_list args; P3 X& f0 D* W1 T7 N/ T# C0 o
va_start(args, format); I4 A% k% f2 J1 U6 ^
vsnprintf(msg, sizeof(msg), format, args);! v5 h8 f% B$ y g$ ~
va_end(args);& ~) P. x" `$ e7 S
UF_UI_open_listing_window();& Y% j( C- F0 _
UF_UI_write_listing_window(msg);
+ v. O W' T- @9 M3 T UF_print_syslog(msg, FALSE);! w5 r# K. W* l0 `& w
}
! O1 m n: M. v; D# j, H0 t# W' ?" P$ O5 ^
#define UF_CALL(X) (report_error( __FILE__, __LINE__, #X, (X)))* g2 M+ k4 u8 q- d
# o' \8 {" r Q4 i! Z( g# u$ ~& rstatic int report_error( const char *file, int line, const char *call, int irc): J& @+ n. i/ z' F; U9 l' D
{9 F/ o( x- Q8 c+ D# d
if (irc)
' O) F; W' n1 R9 L/ p6 k; G# F {
" D1 w: f6 i! H4 r char err[133];
7 D( {* P+ |$ O& \9 C7 D; S
9 J0 {) {/ U w* ^) f' z- U c UF_get_fail_message(irc, err);
& ]4 E( b: v' h- T9 S* F2 e4 G ECHO("*** ERROR code %d at line %d in %s:\n",+ R2 Q: H6 l* d4 M% Z
irc, line, file);4 I: `' A- |7 Y+ E0 t* l, N
ECHO("+++ %s\n", err);' ^2 d' t7 K) U, W9 e' r
ECHO("%s;\n", call);
$ _2 S0 H$ q8 J. Z) y0 e }$ a, r2 a* F5 |5 w6 B
8 i/ \8 C7 v7 L return(irc);
: @# s/ b7 e* j+ s m}[/mw_shl_code]# F0 f) X: ^# @" O; q3 D
. S) M% F8 c$ e# ?
|
|