Extensions - Various Improvments (#8227)

This commit is contained in:
PabstMirror
2021-04-22 14:11:56 -05:00
committed by GitHub
parent af4b9dffc3
commit 49b9b174ba
16 changed files with 217 additions and 26 deletions

View File

@ -19,6 +19,9 @@
extern "C" {
EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function);
EXPORT void __stdcall RVExtensionVersion(char *output, int outputSize) {
strncpy(output, ACE_FULL_VERSION_STR, outputSize - 1);
}
}
std::string getImagePathFromStructuredText(const std::string & input) {