Quote:
Originally Posted by tshering
I think there is no chance without using a disassembler anyway.
|
The resources are stored as three static variables: qt_resource_data (all the files appended to each other), qt_resource_struct (the metadata for the resources), and qt_resource_name (the filenames). See
https://code.woboq.org/qt5/qtbase/sr...c/rcc.cpp.html for the details. The hardest part is actually locating those variables, since they are static, but since they are predictable, there might be a way to do it without disassembling stuff and finding the call to the resource registration. I'll be looking into this soon, since I want to try some things with it for my own purposes.