| 334 | } |
| 335 | |
| 336 | void xs_serial_throw(xsMachine* the, DWORD error, xsStringValue path, xsIntegerValue line) |
| 337 | { |
| 338 | char buffer[2048]; |
| 339 | FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_MAX_WIDTH_MASK, NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buffer, sizeof(buffer), NULL); |
| 340 | fxThrowMessage(the, path, line, XS_UNKNOWN_ERROR, "%s", buffer); |
| 341 | } |
| 342 | |
| 343 | void xs_serial_write(xsMachine *the) |
| 344 | { |
no test coverage detected