| 33 | inline bool TestHr(PGLOBAL g, HRESULT hr) |
| 34 | { |
| 35 | if FAILED(hr) { |
| 36 | snprintf(g->Message, sizeof(g->Message), "%s, hr=%d", MSG(COM_ERROR), hr); |
| 37 | return true; |
| 38 | } else |
| 39 | return false; |
| 40 | |
| 41 | } // end of TestHr |
no outgoing calls
no test coverage detected