Browse CVS Repository
Annotation of /malonnote/mnDef.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.11 -
( hide annotations)
( download)
( as text)
Tue Oct 24 08:52:04 2006 UTC
(17 years, 4 months ago)
by maloninc
Branch: MAIN
CVS Tags: HEAD
Changes since 1.10: +6 -2 lines
File MIME type: text/x-chdr
add FastSearch menu item and save it
| 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 |
maloninc |
1.10 |
#define MN_READ_INTERVAL 60000 /* milli seconds */ |
| 13 |
maloninc |
1.8 |
|
| 14 |
maloninc |
1.11 |
#define MN_ENABLE_FAST_SEARCH "YES" |
| 15 |
|
|
#define MN_DISABLE_FAST_SEARCH "NO" |
| 16 |
|
|
|
| 17 |
|
|
#define CONF_APP_NAME "MalonNote" |
| 18 |
|
|
#define CONF_WIKI_DIR "WikiDir" |
| 19 |
|
|
#define CONF_FAST_SEARCH_OPT "FastSearchOpt" |
| 20 |
maloninc |
1.8 |
|
| 21 |
maloninc |
1.1 |
#endif // MNDEF_H |
|