1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-04 10:37:49 +01:00
libtgvoip/os/darwin/TGLogWrapper.m

11 lines
216 B
Mathematica
Raw Normal View History

2017-02-02 17:24:40 +01:00
#import <Foundation/Foundation.h>
2017-03-30 16:06:59 +02:00
#import "ASCommon.h"
2017-02-02 17:24:40 +01:00
void __tgvoip_call_tglog(char* format, ...){
va_list args;
va_start(args, format);
2017-03-30 16:06:59 +02:00
TGLogv([[NSString alloc]initWithCString:format], args);
2017-02-02 17:24:40 +01:00
va_end(args);
2017-03-30 16:06:59 +02:00
}