Fixed linux compilation support

This commit is contained in:
looterz 2016-02-19 12:24:08 -06:00
parent a1224c5ca6
commit f0f7f14093

View File

@ -37,9 +37,7 @@ void __stdcall RVExtension(char *output, int outputSize, const char *function) {
EXTENSION_RETURN();
}
#ifndef _WIN32
EXTENSION_RETURN();
#endif
#ifdef _WIN32
if (!strcmp(function, "--COMPLETE--"))
{
@ -94,5 +92,7 @@ void __stdcall RVExtension(char *output, int outputSize, const char *function) {
strncpy_s(output, outputSize, result.c_str(), _TRUNCATE);
}
#endif
EXTENSION_RETURN();
}