mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
18 lines
346 B
C
18 lines
346 B
C
/* base definitions */
|
|
|
|
#ifdef WIN32
|
|
#define VER "0.2.11-W32"
|
|
#endif
|
|
|
|
#define MARK CERR("--Mark--")
|
|
#define DBEX(x) CERR("DB-error: "<<x.what()<<", Errno: "<<x.get_errno())
|
|
|
|
#ifdef PRINTF_DEBUG
|
|
#define CERR(x) cerr <<__FILE__<<" ("<<__LINE__<<") :"<< x << endl;
|
|
#else
|
|
#define CERR(x)
|
|
#endif
|
|
|
|
|
|
#define XCA_TITLE "X Certifikate and Key management"
|