2020-03-30 12:00:09 +00:00
|
|
|
//
|
|
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
|
|
// you should have received with this source code distribution.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef TGVOIP_TGLOGWRAPPER_H
|
|
|
|
#define TGVOIP_TGLOGWRAPPER_H
|
|
|
|
|
|
|
|
#if defined __cplusplus
|
2020-04-24 09:21:58 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2020-03-30 12:00:09 +00:00
|
|
|
#endif
|
|
|
|
|
2020-04-24 09:21:58 +00:00
|
|
|
void __tgvoip_call_tglog(const char* format, ...);
|
2020-03-30 12:00:09 +00:00
|
|
|
|
|
|
|
#if defined __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif //TGVOIP_TGLOGWRAPPER_H
|