Browse CVS Repository
Diff of /malonnote/mnDef.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
#ifndef MNDEF_H |
#ifndef MNDEF_H |
| 2 |
#define MNDEF_H |
#define MNDEF_H |
| 3 |
|
|
| 4 |
#define MN_ERROR(msg) wxLogError(wxT("File: [%s] Line: [%d] Message: [%s]"), __TFILE__, __LINE__, msg); |
#include <errno.h> |
| 5 |
#define MN_SYS_ERROR(msg) wxLogSysError(wxT("File: [%s] Line: [%d] Message: [%s]"), __TFILE__, __LINE__, msg); |
|
| 6 |
#define MN_FATAL_ERROR(msg) wxLogFatalError(wxT("File: [%s] Line: [%d] Message: [%s]"), __TFILE__, __LINE__, msg); |
#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 |
#define MN_APP_NAME "MalonNote" |
#define MN_APP_NAME "MalonNote" |
| 10 |
#define MN_APP_VERSION MN_APP_NAME " version" PACKAGE_VERSION |
#define MN_APP_VERSION MN_APP_NAME " version" PACKAGE_VERSION |
| 11 |
|
|
| 12 |
|
#define MN_READ_INTERVAL 600000 /* milli seconds */ |
| 13 |
|
|
| 14 |
|
#define CONF_APP_NAME "MalonNote" |
| 15 |
|
#define CONF_WIKI_DIR "WikiDir" |
| 16 |
|
|
| 17 |
#endif // MNDEF_H |
#endif // MNDEF_H |
|
|
Legend:
| Removed from v.1.4 |
|
| changed lines |
| |
Added in v.1.9 |
|
|
| |