├── .gitignore ├── ContainersInl.h ├── Core.cpp ├── ExtraPass.txt ├── IDA_ExtraPass_PlugIn.pLW ├── IDA_ExtraPass_PlugIn.plw ├── IDA_ExtraPass_PlugIn.sln ├── IDA_ExtraPass_PlugIn.vcxproj ├── IDA_ExtraPass_PlugIn.vcxproj.filters ├── IDA_ExtraPass_PlugIn.vcxproj.user ├── IdaOgg.h ├── IdaOggPlayer.LiB ├── IdaOggPlayerD.LiB ├── Main.cpp ├── README.md ├── Readme.txt ├── SegSelect.LiB ├── SegSelect.h ├── SegSelectD.LiB ├── SegSelectEA64.LiB ├── SegSelectEA64D.LiB ├── StdAfx.h ├── Utility.cpp ├── Utility.h ├── WaitBoxEx.LiB ├── WaitBoxEx.h ├── WaitBoxExD.LiB └── complete_ogg.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/.gitignore -------------------------------------------------------------------------------- /ContainersInl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/ContainersInl.h -------------------------------------------------------------------------------- /Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/Core.cpp -------------------------------------------------------------------------------- /ExtraPass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/ExtraPass.txt -------------------------------------------------------------------------------- /IDA_ExtraPass_PlugIn.pLW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IDA_ExtraPass_PlugIn.pLW -------------------------------------------------------------------------------- /IDA_ExtraPass_PlugIn.plw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IDA_ExtraPass_PlugIn.plw -------------------------------------------------------------------------------- /IDA_ExtraPass_PlugIn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IDA_ExtraPass_PlugIn.sln -------------------------------------------------------------------------------- /IDA_ExtraPass_PlugIn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IDA_ExtraPass_PlugIn.vcxproj -------------------------------------------------------------------------------- /IDA_ExtraPass_PlugIn.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IDA_ExtraPass_PlugIn.vcxproj.filters -------------------------------------------------------------------------------- /IDA_ExtraPass_PlugIn.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IDA_ExtraPass_PlugIn.vcxproj.user -------------------------------------------------------------------------------- /IdaOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IdaOgg.h -------------------------------------------------------------------------------- /IdaOggPlayer.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IdaOggPlayer.LiB -------------------------------------------------------------------------------- /IdaOggPlayerD.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/IdaOggPlayerD.LiB -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/Main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/Readme.txt -------------------------------------------------------------------------------- /SegSelect.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/SegSelect.LiB -------------------------------------------------------------------------------- /SegSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/SegSelect.h -------------------------------------------------------------------------------- /SegSelectD.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/SegSelectD.LiB -------------------------------------------------------------------------------- /SegSelectEA64.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/SegSelectEA64.LiB -------------------------------------------------------------------------------- /SegSelectEA64D.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/SegSelectEA64D.LiB -------------------------------------------------------------------------------- /StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/StdAfx.h -------------------------------------------------------------------------------- /Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/Utility.cpp -------------------------------------------------------------------------------- /Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/Utility.h -------------------------------------------------------------------------------- /WaitBoxEx.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/WaitBoxEx.LiB -------------------------------------------------------------------------------- /WaitBoxEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/WaitBoxEx.h -------------------------------------------------------------------------------- /WaitBoxExD.LiB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/WaitBoxExD.LiB -------------------------------------------------------------------------------- /complete_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihilus/IDA_Extrapass/HEAD/complete_ogg.h --------------------------------------------------------------------------------