Throws a GdiPlusException on failing Status value
| 299 | |
| 300 | // Throws a GdiPlusException on failing Status value |
| 301 | inline void GdiPlusCall(Gdiplus::Status status) |
| 302 | { |
| 303 | if(status != Gdiplus::Ok) |
| 304 | throw GdiPlusException(status); |
| 305 | } |
| 306 | |
| 307 | #endif |
| 308 |
no test coverage detected