mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-02 09:37:52 +01:00
b1a0b3d94a
- Nonblocking sockets - Better ShittyInternetMode - Fixed a bunch of bugs - Probably added some new bugs too
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
|