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

11 lines
216 B
Objective-C

#import <Foundation/Foundation.h>
#import "ASCommon.h"
void __tgvoip_call_tglog(char* format, ...){
va_list args;
va_start(args, format);
TGLogv([[NSString alloc]initWithCString:format], args);
va_end(args);
}