Browse CVS Repository
Annotation of /malonnote/mnDef.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.6 -
( hide annotations)
( download)
( as text)
Tue Sep 20 06:36:29 2005 UTC
(18 years, 6 months ago)
by maloninc
Branch: MAIN
CVS Tags: dev_1_3-0008
Changes since 1.5: +1 -0 lines
File MIME type: text/x-chdr
add errno.h
| 1 |
maloninc |
1.1 |
#ifndef MNDEF_H |
| 2 |
|
|
#define MNDEF_H |
| 3 |
maloninc |
1.6 |
#include <errno.h> |
| 4 |
maloninc |
1.1 |
|
| 5 |
maloninc |
1.5 |
#define MN_ERROR(msg) wxLogError(wxT("File: [%s] Line: [%d] Message: [%s] errno: [%d]"), __TFILE__, __LINE__, msg, errno); |
| 6 |
|
|
#define MN_SYS_ERROR(msg) wxLogSysError(wxT("File: [%s] Line: [%d] Message: [%s] errno: [%d]"), __TFILE__, __LINE__, msg, errno); |
| 7 |
|
|
#define MN_FATAL_ERROR(msg) wxLogFatalError(wxT("File: [%s] Line: [%d] Message: [%s] errno: [%d]"), __TFILE__, __LINE__, msg, errno); |
| 8 |
maloninc |
1.2 |
#define MN_APP_NAME "MalonNote" |
| 9 |
maloninc |
1.4 |
#define MN_APP_VERSION MN_APP_NAME " version" PACKAGE_VERSION |
| 10 |
maloninc |
1.1 |
#endif // MNDEF_H |
| |