mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-03 10:07:45 +01:00
11 lines
256 B
Objective-C
11 lines
256 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
extern void TGLogv(NSString *format, va_list args);
|
|
|
|
void __tgvoip_call_tglog(const char* format, ...){
|
|
va_list args;
|
|
va_start(args, format);
|
|
TGLogv([[NSString alloc]initWithUTF8String:format], args);
|
|
va_end(args);
|
|
}
|