This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> [SetupUninstallOEMInf - oem16.inf] | |
>>> Section start 2020/09/30 19:22:15.082 | |
cmd: C:\Windows\System32\MsiExec.exe -Embedding E1EDC6781DDBC0DECDC2BE8484077249 E Global\MSI0000 | |
inf: Flags: 0x00000001 | |
dvs: {DrvSetupUninstallDriver - C:\WINDOWS\INF\oem16.inf} | |
dvs: Flags: 0x10000001 | |
dvs: {Driver Setup Delete Driver Package: oem16.inf} 19:22:15.098 | |
ump: Delete flags: 0x00000002 | |
pol: {Driver package policy check} 19:22:15.098 | |
pol: {Driver package policy check - exit(0x00000000)} 19:22:15.098 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <lua.h> | |
#include <lualib.h> | |
#include <lauxlib.h> | |
#include <lua-bitop.h> | |
int interp_run(void) | |
{ | |
int ret; | |
lua_State *L = luaL_newstate(); | |
luaL_openlibs(L); |