aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCLog.h
blob: 49b183911ad944a9436e209e045cfe998764f1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __MAILCORE_MCLOG_H_

#define __MAILCORE_MCLOG_H_

#include <stdio.h>

#ifdef __cplusplus

#define MCLog(...) mailcore::logInternal(NULL, __FILE__, __LINE__, 0, __VA_ARGS__)

namespace mailcore {
    
    void logInternal(const char * user,
                     const char * filename,
                     unsigned int line,
                     int dumpStack,
                     const char * format, ...) __printflike(5, 6);
    
}

#endif

#endif