mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/libtgvoip git-subtree-mainline: d153fe0f21174c4d6e1c3602e852e7a0e53051f0 git-subtree-split: dcbbfd9ec40ee8702852a768d75362142becc727
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
|