Throws a Win32Exception on failing return value
| 292 | |
| 293 | // Throws a Win32Exception on failing return value |
| 294 | inline void Win32Call(BOOL retVal) |
| 295 | { |
| 296 | if(retVal == 0) |
| 297 | throw Win32Exception(GetLastError()); |
| 298 | } |
| 299 | |
| 300 | // Throws a GdiPlusException on failing Status value |
| 301 | inline void GdiPlusCall(Gdiplus::Status status) |
no test coverage detected