How Can I get the source code presented in Qt5Core.dll?
Unsolved
General and Desktop
-
I'm trying to see what is the code that generate this .dll. I tryed to find on https://code.woboq.org/ but didn't find it
-
@leonardoMB
Qt5Core.dll
will be "large", generated from hundreds of source files/functions. You'd be better looking for a specific class/method than everything which goes intoQt5Core.dll
. The docs tell you which classes go into it. -
Official repo: https://code.qt.io/cgit/qt/qtbase.git/
Github mirror: https://github.com/qt/qtbase
If you just need to inspect the code: https://code.woboq.org/qt6/ -