Browse CVS Repository
Contents of /malonnote/mnDef.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.4 -
( show annotations)
( download)
( as text)
Sat Aug 13 06:12:05 2005 UTC
(18 years, 7 months ago)
by maloninc
Branch: MAIN
CVS Tags: dev_1_3-0001, dev_1_3-0002, rel-1_1, dev-1_2-0001, dev-1_1-0009
Changes since 1.3: +1 -1 lines
File MIME type: text/x-chdr
fix rename bug.
| 1 |
#ifndef MNDEF_H |
| 2 |
#define MNDEF_H |
| 3 |
|
| 4 |
#define MN_ERROR(msg) wxLogError(wxT("File: [%s] Line: [%d] Message: [%s]"), __TFILE__, __LINE__, msg); |
| 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); |
| 7 |
#define MN_APP_NAME "MalonNote" |
| 8 |
#define MN_APP_VERSION MN_APP_NAME " version" PACKAGE_VERSION |
| 9 |
#endif // MNDEF_H |
| |