winapi - Reading Values from Windows Resource (.res) Files -
all. know if there way read out values in compiled resource (*.res) file. familiar reading resources executable, , i'm wondering if there similar way read out resources resource file. in advance!
the windows functionality dealing res files deals them exclusively embedded resources. typically application ship localized resources contained in resource dlls. loadlibraryex takes flags load_library_as_datafile
used prevent dlls dllmain being called.
the you're going microsoft wrt loading res files directly this msdn page
if manipulation of resources want beginupdateresource updateresource, endupdateresource api can use inject (or modify) version resource in existing dll.
Comments
Post a Comment