TeaSpeak-Client/native/updater/ui.h

18 lines
318 B
C
Raw Normal View History

2020-04-22 14:01:29 -04:00
#pragma once
#include <string>
namespace ui {
enum struct FileBlockedResult {
UNSET,
PROCESSES_CLOSED,
2020-06-13 09:05:49 -04:00
NOT_IMPLEMENTED,
2020-04-22 14:01:29 -04:00
CANCELED,
INTERNAL_ERROR
};
#ifdef WIN32
extern void init_win32();
#endif
extern FileBlockedResult open_file_blocked(const std::string&);
}