├── .gitattributes ├── .gitignore ├── IDA_ClassInformer_Modified.sln ├── IDA_ClassInformer_Modified_PlugIn.P64 ├── IDA_ClassInformer_Modified_PlugIn.pLW ├── Plugin ├── Class_Informer.txt ├── Core.cpp ├── Core.h ├── GeneratedFiles │ ├── Debug │ │ └── moc_MainDialog.cpp │ ├── Debug64 │ │ └── moc_MainDialog.cpp │ ├── Release │ │ └── moc_MainDialog.cpp │ ├── Release64 │ │ └── moc_MainDialog.cpp │ ├── qrc_QtResource.cpp │ └── ui_dialog.h ├── IDA_ClassInformer_PlugIn.vcxproj ├── IDA_ClassInformer_PlugIn.vcxproj.filters ├── IDA_ClassInformer_PlugIn.vcxproj.user ├── IdaOgg.h ├── IdaOggPlayer.LiB ├── IdaOggPlayerD.LiB ├── Main.cpp ├── MainDialog.cpp ├── MainDialog.h ├── QtResource.qrc ├── RTTI.cpp ├── RTTI.h ├── StdAfx.h ├── Utility.cpp ├── Utility.h ├── Vftable.cpp ├── Vftable.h ├── WaitBoxEx.LiB ├── WaitBoxEx.h ├── WaitBoxExD.LiB ├── banner.png ├── checkbox-checked.png ├── completed.ogg ├── dialog.ui ├── icon.png ├── progress-style.qss ├── style.qss ├── undname.h └── view-style.qss └── ReadMe.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/.gitignore -------------------------------------------------------------------------------- /IDA_ClassInformer_Modified.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/IDA_ClassInformer_Modified.sln -------------------------------------------------------------------------------- /IDA_ClassInformer_Modified_PlugIn.P64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/IDA_ClassInformer_Modified_PlugIn.P64 -------------------------------------------------------------------------------- /IDA_ClassInformer_Modified_PlugIn.pLW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/IDA_ClassInformer_Modified_PlugIn.pLW -------------------------------------------------------------------------------- /Plugin/Class_Informer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Class_Informer.txt -------------------------------------------------------------------------------- /Plugin/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Core.cpp -------------------------------------------------------------------------------- /Plugin/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Core.h -------------------------------------------------------------------------------- /Plugin/GeneratedFiles/Debug/moc_MainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/GeneratedFiles/Debug/moc_MainDialog.cpp -------------------------------------------------------------------------------- /Plugin/GeneratedFiles/Debug64/moc_MainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/GeneratedFiles/Debug64/moc_MainDialog.cpp -------------------------------------------------------------------------------- /Plugin/GeneratedFiles/Release/moc_MainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/GeneratedFiles/Release/moc_MainDialog.cpp -------------------------------------------------------------------------------- /Plugin/GeneratedFiles/Release64/moc_MainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/GeneratedFiles/Release64/moc_MainDialog.cpp -------------------------------------------------------------------------------- /Plugin/GeneratedFiles/qrc_QtResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/GeneratedFiles/qrc_QtResource.cpp -------------------------------------------------------------------------------- /Plugin/GeneratedFiles/ui_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/GeneratedFiles/ui_dialog.h -------------------------------------------------------------------------------- /Plugin/IDA_ClassInformer_PlugIn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/IDA_ClassInformer_PlugIn.vcxproj -------------------------------------------------------------------------------- /Plugin/IDA_ClassInformer_PlugIn.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/IDA_ClassInformer_PlugIn.vcxproj.filters -------------------------------------------------------------------------------- /Plugin/IDA_ClassInformer_PlugIn.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/IDA_ClassInformer_PlugIn.vcxproj.user -------------------------------------------------------------------------------- /Plugin/IdaOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/IdaOgg.h -------------------------------------------------------------------------------- /Plugin/IdaOggPlayer.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/IdaOggPlayer.LiB -------------------------------------------------------------------------------- /Plugin/IdaOggPlayerD.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/IdaOggPlayerD.LiB -------------------------------------------------------------------------------- /Plugin/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Main.cpp -------------------------------------------------------------------------------- /Plugin/MainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/MainDialog.cpp -------------------------------------------------------------------------------- /Plugin/MainDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/MainDialog.h -------------------------------------------------------------------------------- /Plugin/QtResource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/QtResource.qrc -------------------------------------------------------------------------------- /Plugin/RTTI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/RTTI.cpp -------------------------------------------------------------------------------- /Plugin/RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/RTTI.h -------------------------------------------------------------------------------- /Plugin/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/StdAfx.h -------------------------------------------------------------------------------- /Plugin/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Utility.cpp -------------------------------------------------------------------------------- /Plugin/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Utility.h -------------------------------------------------------------------------------- /Plugin/Vftable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Vftable.cpp -------------------------------------------------------------------------------- /Plugin/Vftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/Vftable.h -------------------------------------------------------------------------------- /Plugin/WaitBoxEx.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/WaitBoxEx.LiB -------------------------------------------------------------------------------- /Plugin/WaitBoxEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/WaitBoxEx.h -------------------------------------------------------------------------------- /Plugin/WaitBoxExD.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/WaitBoxExD.LiB -------------------------------------------------------------------------------- /Plugin/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/banner.png -------------------------------------------------------------------------------- /Plugin/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/checkbox-checked.png -------------------------------------------------------------------------------- /Plugin/completed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/completed.ogg -------------------------------------------------------------------------------- /Plugin/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/dialog.ui -------------------------------------------------------------------------------- /Plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/icon.png -------------------------------------------------------------------------------- /Plugin/progress-style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/progress-style.qss -------------------------------------------------------------------------------- /Plugin/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/style.qss -------------------------------------------------------------------------------- /Plugin/undname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/undname.h -------------------------------------------------------------------------------- /Plugin/view-style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/Plugin/view-style.qss -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugues92/IDA_ClassInformer_Modified/HEAD/ReadMe.txt --------------------------------------------------------------------------------