mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-29 17:31:56 +00:00
git-subtree-dir: submodules/libtgvoip git-subtree-mainline:d153fe0f21git-subtree-split:dcbbfd9ec4
16 lines
263 B
C++
Executable File
16 lines
263 B
C++
Executable File
#ifndef LIBTGVOIP_WINDOWS_SPECIFIC_H
|
|
#define LIBTGVOIP_WINDOWS_SPECIFIC_H
|
|
|
|
#include <string>
|
|
#include <Windows.h>
|
|
|
|
namespace tgvoip{
|
|
|
|
class WindowsSpecific{
|
|
public:
|
|
static std::string GetErrorMessage(DWORD code);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // LIBTGVOIP_WINDOWS_SPECIFIC_H
|