| 90 | #include "x6502abbrev.h" |
| 91 | |
| 92 | bool 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 | |
| 107 | bool DemandLua() |
| 108 | { |
no outgoing calls
no test coverage detected