(hresult uint32)
| 143 | ) |
| 144 | |
| 145 | func isWin32Err(hresult uint32) bool { |
| 146 | return hresult&0xffff0000 == (1<<31)|(windows.FACILITY_WIN32<<16) |
| 147 | } |
| 148 | |
| 149 | func (e _WIN32_ERR) Error() string { |
| 150 | switch e { |
no outgoing calls
no test coverage detected
searching dependent graphs…