├── .gitignore ├── .gitmodules ├── Contributing.md ├── License.md ├── OTAIntfSearch.dpr ├── OTAIntfSearch.dproj ├── OTAIntfSearch.ficfg ├── OTAIntfSearch.ithelper ├── OTAIntfSearch.res ├── OTAIntfSearchITHVerInfo.RC ├── Open Tools API Interface Search.groupproj ├── README.md ├── Source ├── OTAIntfSearch.AboutDlg.dfm ├── OTAIntfSearch.AboutDlg.pas ├── OTAIntfSearch.BrowseFolderForm.dfm ├── OTAIntfSearch.BrowseFolderForm.pas ├── OTAIntfSearch.Constants.pas ├── OTAIntfSearch.CustomHintWindow.pas ├── OTAIntfSearch.CustomVirtualStringtree.pas ├── OTAIntfSearch.FileParser.pas ├── OTAIntfSearch.Functions.pas ├── OTAIntfSearch.GenerateOTACode.pas ├── OTAIntfSearch.InterfaceIndex.pas ├── OTAIntfSearch.InterfaceObjectMethods.pas ├── OTAIntfSearch.Interfaces.pas ├── OTAIntfSearch.MainForm.dfm ├── OTAIntfSearch.MainForm.pas ├── OTAIntfSearch.MemIniFile.pas ├── OTAIntfSearch.OTAServicePaths.pas ├── OTAIntfSearch.Options.pas ├── OTAIntfSearch.OptionsForm.dfm ├── OTAIntfSearch.OptionsForm.pas ├── OTAIntfSearch.ProgressForm.dfm ├── OTAIntfSearch.ProgressForm.pas ├── OTAIntfSearch.ProgressManager.pas ├── OTAIntfSearch.ToolsAPIFile.pas ├── OTAIntfSearch.ToolsAPIFiles.pas ├── OTAIntfSearch.Types.pas └── OTAIntfSearch.UIUpdater.pas └── Test ├── OTAIntfSearchTests.dpr ├── OTAIntfSearchTests.dproj ├── OTAIntfSearchTests.ithelper ├── OTAIntfSearchTests.res └── TestOTAIntfSearch.Constants.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/.gitmodules -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Contributing.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/License.md -------------------------------------------------------------------------------- /OTAIntfSearch.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/OTAIntfSearch.dpr -------------------------------------------------------------------------------- /OTAIntfSearch.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/OTAIntfSearch.dproj -------------------------------------------------------------------------------- /OTAIntfSearch.ficfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/OTAIntfSearch.ficfg -------------------------------------------------------------------------------- /OTAIntfSearch.ithelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/OTAIntfSearch.ithelper -------------------------------------------------------------------------------- /OTAIntfSearch.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/OTAIntfSearch.res -------------------------------------------------------------------------------- /OTAIntfSearchITHVerInfo.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/OTAIntfSearchITHVerInfo.RC -------------------------------------------------------------------------------- /Open Tools API Interface Search.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Open Tools API Interface Search.groupproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/README.md -------------------------------------------------------------------------------- /Source/OTAIntfSearch.AboutDlg.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.AboutDlg.dfm -------------------------------------------------------------------------------- /Source/OTAIntfSearch.AboutDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.AboutDlg.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.BrowseFolderForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.BrowseFolderForm.dfm -------------------------------------------------------------------------------- /Source/OTAIntfSearch.BrowseFolderForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.BrowseFolderForm.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.Constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.Constants.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.CustomHintWindow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.CustomHintWindow.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.CustomVirtualStringtree.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.CustomVirtualStringtree.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.FileParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.FileParser.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.Functions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.Functions.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.GenerateOTACode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.GenerateOTACode.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.InterfaceIndex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.InterfaceIndex.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.InterfaceObjectMethods.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.InterfaceObjectMethods.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.Interfaces.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.MainForm.dfm -------------------------------------------------------------------------------- /Source/OTAIntfSearch.MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.MainForm.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.MemIniFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.MemIniFile.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.OTAServicePaths.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.OTAServicePaths.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.Options.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.Options.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.OptionsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.OptionsForm.dfm -------------------------------------------------------------------------------- /Source/OTAIntfSearch.OptionsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.OptionsForm.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.ProgressForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.ProgressForm.dfm -------------------------------------------------------------------------------- /Source/OTAIntfSearch.ProgressForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.ProgressForm.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.ProgressManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.ProgressManager.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.ToolsAPIFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.ToolsAPIFile.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.ToolsAPIFiles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.ToolsAPIFiles.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.Types.pas -------------------------------------------------------------------------------- /Source/OTAIntfSearch.UIUpdater.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Source/OTAIntfSearch.UIUpdater.pas -------------------------------------------------------------------------------- /Test/OTAIntfSearchTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Test/OTAIntfSearchTests.dpr -------------------------------------------------------------------------------- /Test/OTAIntfSearchTests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Test/OTAIntfSearchTests.dproj -------------------------------------------------------------------------------- /Test/OTAIntfSearchTests.ithelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Test/OTAIntfSearchTests.ithelper -------------------------------------------------------------------------------- /Test/OTAIntfSearchTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Test/OTAIntfSearchTests.res -------------------------------------------------------------------------------- /Test/TestOTAIntfSearch.Constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/OTA-Interface-Search/HEAD/Test/TestOTAIntfSearch.Constants.pas --------------------------------------------------------------------------------