MCPcopy Create free account
hub / github.com/TASEmulators/fceux / CheckLua

Function CheckLua

src/lua-engine.cpp:92–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90#include "x6502abbrev.h"
91
92bool CheckLua()
93{
94#ifdef __WIN_DRIVER__
95 HMODULE mod = LoadLibrary("lua51.dll");
96 if(!mod)
97 {
98 return false;
99 }
100 FreeLibrary(mod);
101 return true;
102#else
103 return true;
104#endif
105}
106
107bool DemandLua()
108{

Callers 2

DemandLuaFunction · 0.85
FCEU_LuaStopFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected