Browse CVS Repository
Annotation of /malonnote/mnDef.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.8 -
( hide annotations)
( download)
( as text)
Thu Oct 6 05:29:01 2005 UTC
(18 years, 5 months ago)
by maloninc
Branch: MAIN
CVS Tags: rel_1_7_1, dev_1_5-0004, dev_1_6-0005, dev_1_6-0004, dev_1_6-0003, dev_1_6-0002, dev_1_6-0001
Changes since 1.7: +5 -0 lines
File MIME type: text/x-chdr
fixed for mac
| 1 |
maloninc |
1.1 |
#ifndef MNDEF_H |
| 2 |
|
|
#define MNDEF_H |
| 3 |
maloninc |
1.7 |
|
| 4 |
maloninc |
1.6 |
#include <errno.h> |
| 5 |
maloninc |
1.1 |
|
| 6 |
maloninc |
1.5 |
#define MN_ERROR(msg) wxLogError(wxT("File: [%s] Line: [%d] Message: [%s] errno: [%d]"), __TFILE__, __LINE__, msg, errno); |
| 7 |
|
|
#define MN_SYS_ERROR(msg) wxLogSysError(wxT("File: [%s] Line: [%d] Message: [%s] errno: [%d]"), __TFILE__, __LINE__, msg, errno); |
| 8 |
|
|
#define MN_FATAL_ERROR(msg) wxLogFatalError(wxT("File: [%s] Line: [%d] Message: [%s] errno: [%d]"), __TFILE__, __LINE__, msg, errno); |
| 9 |
maloninc |
1.2 |
#define MN_APP_NAME "MalonNote" |
| 10 |
maloninc |
1.4 |
#define MN_APP_VERSION MN_APP_NAME " version" PACKAGE_VERSION |
| 11 |
maloninc |
1.8 |
|
| 12 |
|
|
|
| 13 |
|
|
#define CONF_APP_NAME "MalonNote" |
| 14 |
|
|
#define CONF_WIKI_DIR "WikiDir" |
| 15 |
|
|
|
| 16 |
maloninc |
1.1 |
#endif // MNDEF_H |
| |