17 lines
293 B
C++
17 lines
293 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace ui {
|
|
enum struct FileBlockedResult {
|
|
UNSET,
|
|
PROCESSES_CLOSED,
|
|
CANCELED,
|
|
INTERNAL_ERROR
|
|
};
|
|
|
|
#ifdef WIN32
|
|
extern void init_win32();
|
|
#endif
|
|
extern FileBlockedResult open_file_blocked(const std::string&);
|
|
} |