1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 09:37:52 +01:00
libtgvoip/os/windows/WindowsSpecific.h
Grishka b1a0b3d94a 2.3
- Nonblocking sockets
- Better ShittyInternetMode
- Fixed a bunch of bugs
- Probably added some new bugs too
2018-11-09 18:44:01 +03:00

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