(funcName string, hr win.HRESULT)
| 98 | } |
| 99 | |
| 100 | func errorFromHRESULT(funcName string, hr win.HRESULT) error { |
| 101 | return newError(fmt.Sprintf("%s: Error %d", funcName, hr)) |
| 102 | } |
| 103 | |
| 104 | func wrapErr(err error) error { |
| 105 | if _, ok := err.(*Error); ok { |
no test coverage detected
searching dependent graphs…