9 lines
149 B
C++
9 lines
149 B
C++
|
#pragma once
|
||
|
|
||
|
namespace hex::plugin::builtin {
|
||
|
|
||
|
void showError(const std::string& message);
|
||
|
|
||
|
void showWarning(const std::string& message);
|
||
|
}
|