We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello
I was able to get this running in windows (wine on osx) byt adding line: lib = ffi.load("msvcrt")
if OS == 'Windows' then lib = ffi.load("msvcrt")
The text was updated successfully, but these errors were encountered:
According to http://luajit.org/ext_ffi_api.html, msvcrt should be part of ffi.C. Maybe it is something difference with WINE in not-Windows platform.
msvcrt
ffi.C
I try to fix it with #3. However, I don't have WINE installed. Could you test the pr for me?
Sorry, something went wrong.
This problem was in real win7 too. There loading msvcrt was not good, but this works: lib = ffi.load("msvcr100.dll")
I quess you can load any msvcrXXX.dll.
No branches or pull requests
Hello
I was able to get this running in windows (wine on osx) byt adding line: lib = ffi.load("msvcrt")
if OS == 'Windows' then
lib = ffi.load("msvcrt")
The text was updated successfully, but these errors were encountered: