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