1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 17:51:06 +01:00
libtgvoip/os/windows/WindowsSpecific.h

16 lines
263 B
C
Raw Normal View History

#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