Browse CVS Repository
Contents of /malonnote/mnDef.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.10 -
( show annotations)
( download)
( as text)
Tue Oct 24 04:45:10 2006 UTC
(17 years, 5 months ago)
by maloninc
Branch: MAIN
Changes since 1.9: +1 -1 lines
File MIME type: text/x-chdr
fixed timer routine(readAll)
| 1 |
#ifndef MNDEF_H |
| 2 |
#define MNDEF_H |
| 3 |
|
| 4 |
#include <errno.h> |
| 5 |
|
| 6 |
#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" |
| 10 |
#define MN_APP_VERSION MN_APP_NAME " version" PACKAGE_VERSION |
| 11 |
|
| 12 |
#define MN_READ_INTERVAL 60000 /* milli seconds */ |
| 13 |
|
| 14 |
#define CONF_APP_NAME "MalonNote" |
| 15 |
#define CONF_WIKI_DIR "WikiDir" |
| 16 |
|
| 17 |
#endif // MNDEF_H |
|