| 753 | |
| 754 | |
| 755 | ILboolean ILAPIENTRY ilutLoadResource(HINSTANCE hInst, ILint ID, ILstring ResourceType, ILenum Type) |
| 756 | { |
| 757 | HRSRC Resource = (HRSRC)LoadResource(hInst, FindResource(hInst, MAKEINTRESOURCE(ID), ResourceType)); |
| 758 | ILubyte *Data = (ILubyte*)LockResource(Resource); |
| 759 | |
| 760 | return ilLoadL(Type, Data, SizeofResource(hInst, FindResource(hInst, MAKEINTRESOURCE(ID), ResourceType))); |
| 761 | } |
| 762 | |
| 763 | |
| 764 | #if !defined(_WIN32_WCE) && !(defined(_WIN32) && defined(__GNUC__)) |
nothing calls this directly
no outgoing calls
no test coverage detected