libs/lua-5.3.4/vc14/lua/stub.cpp

17 lines
259 B
C++
Raw Normal View History

2017-02-20 21:03:08 +00:00
// Stub to make Lua build and run for Windows 10
// Vladislav Khorev
#include <windows.h>
extern "C" HMODULE WINAPI LoadLibraryExA(
_In_ LPCSTR lpFileName,
_Reserved_ HANDLE hFile,
_In_ DWORD dwFlags
)
{
return NULL;
}