mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
18 lines
213 B
C++
18 lines
213 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
String errMsg;
|
|
|
|
#include "../bsdiffwrapper.h"
|
|
|
|
String BsGetLastError() {
|
|
return errMsg;
|
|
}
|
|
|
|
bool Err(String str) {
|
|
errMsg = str;
|
|
return false;
|
|
}
|
|
|
|
|