I have custom binary resources (animated cursors) that would like to store as resources in a static lib in Visual Studio C++. It turns out that custom binary resources wi
The Problem of @LihO answer is:
The first parameter of FindResource is the ModuleID of the Module containing the resources. If this is set to NULL the function will search in created process (.exe), not the DLL.
But how to get the HMODULE insinde a static LIB?
Edit:
See also: Add lib resource to a library