| 257 | } |
| 258 | |
| 259 | void fxThrowLastError(xsMachine* the, xsStringValue path, xsIntegerValue line) |
| 260 | { |
| 261 | char buffer[2048]; |
| 262 | FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_MAX_WIDTH_MASK, NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buffer, sizeof(buffer), NULL); |
| 263 | fxThrowMessage(the, path, line, XS_UNKNOWN_ERROR, "%s", buffer); |
| 264 | } |
| 265 | |
| 266 | int mcCountResources(xsMachine* the) |
| 267 | { |
nothing calls this directly
no test coverage detected