/* * "ex" API implementation * http://lua-users.org/wiki/ExtensionProposal * Copyright 2007 Mark Edgar < medgar at student gc maricopa edu > */ #ifndef pusherror_h #define pusherror_h #include #include "lua.h" int windows_pusherror(lua_State *L, DWORD error, int nresults); #define windows_pushlasterror(L) windows_pusherror(L, GetLastError(), -2) #endif/*pusherror_h*/