mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-11 08:39:49 +01:00
1be4d016a4
- Added support for SOCKS5 proxy - Also, a bunch of bugfixes
11 lines
225 B
Objective-C
11 lines
225 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <ASCommon.h>
|
|
|
|
void __tgvoip_call_tglog(const char* format, ...){
|
|
va_list args;
|
|
va_start(args, format);
|
|
TGLogv([[NSString alloc]initWithUTF8String:format], args);
|
|
va_end(args);
|
|
}
|