mirror of
https://github.com/DrKLO/Telegram.git
synced 2025-03-11 02:39:23 +01:00
16 lines
No EOL
263 B
C++
Executable file
16 lines
No EOL
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
|