ultimatepp/bazaar/Functions4U/Bsdiff/bsadditional.cpp
koldo 9ae4107535 Functions4U: Major update
git-svn-id: svn://ultimatepp.org/upp/trunk@5668 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-12-28 16:23:26 +00:00

18 lines
216 B
C++

#include <Core/Core.h>
#include "../bsdiff.h"
NAMESPACE_UPP
String errMsg;
String BsGetLastError() {
return errMsg;
}
bool Err(String str) {
errMsg = str;
return false;
}
END_UPP_NAMESPACE