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

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -