Swiftgram/MTProtoKit/MTLogging.h
2018-06-13 17:11:43 +03:00

22 lines
313 B
Objective-C

#ifndef MTLogging_H
#define MTLogging_H
#import <Foundation/Foundation.h>
#ifdef __cplusplus
extern "C" {
#endif
bool MTLogEnabled();
void MTLog(NSString *format, ...);
void MTLogSetLoggingFunction(void (*function)(NSString *, va_list args));
void MTLogSetEnabled(bool);
#ifdef __cplusplus
}
#endif
#endif