(message string)
| 86 | } |
| 87 | |
| 88 | func newErrorNoPanic(message string) error { |
| 89 | return processErrorNoPanic(newErr(message)) |
| 90 | } |
| 91 | |
| 92 | func lastError(win32FuncName string) error { |
| 93 | if errno := win.GetLastError(); errno != win.ERROR_SUCCESS { |
no test coverage detected
searching dependent graphs…