6 lines
159 B
C++
6 lines
159 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
void OnError(int err, std::string msg = "");
|
|
void MessageBoxStr(std::string msg);
|
|
void MessageBoxStream(std::stringstream msg); |