| 1305 | |
| 1306 | #ifdef OEMRESOURCE |
| 1307 | inline HBITMAP AtlLoadSysBitmapImage(WORD wBitmapID, UINT fuLoad = LR_DEFAULTCOLOR) |
| 1308 | { |
| 1309 | ATLASSERT(wBitmapID >= 32734 && wBitmapID <= 32767); |
| 1310 | ATLASSERT((fuLoad & LR_LOADFROMFILE) == 0); // this one doesn't load from a file |
| 1311 | return (HBITMAP)::LoadImage(NULL, MAKEINTRESOURCE(wBitmapID), IMAGE_BITMAP, 0, 0, fuLoad); |
| 1312 | } |
| 1313 | #endif // OEMRESOURCE |
| 1314 | |
| 1315 | inline HCURSOR AtlLoadSysCursorImage(ATL::_U_STRINGorID cursor, UINT fuLoad = LR_DEFAULTCOLOR | LR_DEFAULTSIZE, int cxDesired = 0, int cyDesired = 0) |
nothing calls this directly
no outgoing calls
no test coverage detected