Skip to content

Commit

Permalink
Version 2.91
Browse files Browse the repository at this point in the history
- Fixed a few problems to work on IDA 9.0 Released version
- Changed plugin names
  • Loading branch information
herosi committed Oct 6, 2024
1 parent 7220872 commit e945dac
Show file tree
Hide file tree
Showing 102 changed files with 329 additions and 41 deletions.
9 changes: 7 additions & 2 deletions classinformer-code/IDA_ClassInformer.sln
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,29 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug64|x64 = Debug64|x64
Release_IDA8x|x64 = Release_IDA8x|x64
Release|x64 = Release|x64
Release64_IDA8x|x64 = Release64_IDA8x|x64
Release64|x64 = Release64|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Debug|x64.ActiveCfg = Debug|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Debug|x64.Build.0 = Debug|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Debug64|x64.ActiveCfg = Debug64|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Debug64|x64.Build.0 = Debug64|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release_IDA8x|x64.ActiveCfg = Release_IDA8x|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release_IDA8x|x64.Build.0 = Release_IDA8x|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release|x64.ActiveCfg = Release|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release|x64.Build.0 = Release|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release64_IDA8x|x64.ActiveCfg = Release64_IDA8x|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release64_IDA8x|x64.Build.0 = Release64_IDA8x|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release64|x64.ActiveCfg = Release64|x64
{DEADBEEF-CAFE-F00D-FEED-C0FFEEC0FFEE}.Release64|x64.Build.0 = Release64|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
Qt5Version = 5.6.0
SolutionGuid = {77D3BE15-1509-4763-B26C-456ED1078906}
Qt5Version = 5.6.0
EndGlobalSection
EndGlobal
Empty file modified classinformer-code/Plugin/ClassInformerRes.qrc
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions classinformer-code/Plugin/Class_Informer.txt
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Class Informer for IDA 9:
===========================================================
IDA Pro class vftable finder, namer, fixer, lister plug-in.
Version 2.91, October 2024
By Rohitab Batra and Hiroshi Suzuki
https://github.com/herosi/classinformer


Version 2.9, August 2024
By Rohitab Batra

Expand Down
262 changes: 262 additions & 0 deletions classinformer-code/Plugin/IDA_ClassInformer_PlugIn.vcxproj
100644 → 100755

Large diffs are not rendered by default.

Empty file.
10 changes: 10 additions & 0 deletions classinformer-code/Plugin/IDA_ClassInformer_PlugIn.vcxproj.user
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,19 @@
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
<LocalDebuggerEnvironment>PATH=$(QTDIR)bin%3b$(PATH)</LocalDebuggerEnvironment>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_IDA8x|x64'">
<LocalDebuggerCommand>$(IDADIR)ida.exe </LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
<LocalDebuggerEnvironment>PATH=$(QTDIR)bin%3b$(PATH)</LocalDebuggerEnvironment>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release64|x64'">
<LocalDebuggerCommand>$(IDADIR)ida64.exe </LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
<LocalDebuggerEnvironment>PATH=$(QTDIR)bin%3b$(PATH)</LocalDebuggerEnvironment>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release64_IDA8x|x64'">
<LocalDebuggerCommand>$(IDADIR)ida64.exe </LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
<LocalDebuggerEnvironment>PATH=$(QTDIR)bin%3b$(PATH)</LocalDebuggerEnvironment>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion classinformer-code/Plugin/Main.cpp
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ bool idaapi class_informer_t::run(size_t arg)
{
char version[16];
sprintf_s(version, sizeof(version), "%u.%u", HIBYTE(MY_VERSION), LOBYTE(MY_VERSION));
msg("\n>> Class Informer: v: %s, built: %s, By Rohitab Batra (by Hiroshi Suzuki, Sirmabus originally)\n", version, __DATE__);
msg("\n>> Class Informer: v: %s, built: %s, By Rohitab Batra and Hiroshi Suzuki (by Sirmabus originally)\n", version, __DATE__);

if (netNode)
{
Expand Down
2 changes: 2 additions & 0 deletions classinformer-code/Plugin/Main.h
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ extern void setUnknown(ea_t ea, int size);
extern BOOL getVerifyEa(ea_t ea, ea_t &rValue);
extern BOOL hasAnteriorComment(ea_t ea);
extern void killAnteriorComments(ea_t ea);
#if IDA_SDK_VERSION < 900
extern int addStrucMember(struc_t *sptr, char *name, ea_t offset, flags_t flag, opinfo_t *type, asize_t nbytes);
#endif
extern void addTableEntry(UINT flags, ea_t vft, int methodCount, LPCSTR format, ...);
extern BOOL getPlainTypeName(__in LPCSTR mangled, __out_bcount(MAXSTR) LPSTR outStr);
extern void setName(ea_t ea, __in LPCSTR name);
Expand Down
Empty file modified classinformer-code/Plugin/MainDialog.cpp
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/MainDialog.h
100644 → 100755
Empty file.
8 changes: 6 additions & 2 deletions classinformer-code/Plugin/PropertySheet.props
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<IDADIR>C:\Program Files\IDA Professional 9.0\</IDADIR>
<QTDIR>C:\Qt\Qt-5.15.3\</QTDIR>
<QTDIR>..\..\..\Qt\5.15.2-x64\</QTDIR>
<IDASUPPORT>..\..\ida-support-library-code\</IDASUPPORT>
<IDASDK>$(IDADIR)\sdk\</IDASDK>
<IDASDK>..\..\idasdk90\</IDASDK>
<IDASDK8x>..\..\idasdk_pro84\</IDASDK8x>
</PropertyGroup>
<PropertyGroup />
<ItemDefinitionGroup />
Expand All @@ -22,5 +23,8 @@
<BuildMacro Include="IDASDK">
<Value>$(IDASDK)</Value>
</BuildMacro>
<BuildMacro Include="IDASDK8x">
<Value>$(IDASDK8x)</Value>
</BuildMacro>
</ItemGroup>
</Project>
Empty file modified classinformer-code/Plugin/RTTI.cpp
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/RTTI.h
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion classinformer-code/Plugin/StdAfx.h
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ typedef std::unordered_map<ea_t, UINT> eaRefMap; // address & ref count
//#define STYLE_PATH "C:/Projects/IDA Pro Work/IDA_ClassInformer_PlugIn/Plugin/"
#define STYLE_PATH ":/classinf/"

#define MY_VERSION MAKEWORD(9, 2) // Low, high, convention: 0 to 99
#define MY_VERSION MAKEWORD(91, 2) // Low, high, convention: 0 to 99
Empty file modified classinformer-code/Plugin/Vftable.cpp
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/Vftable.h
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/banner.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified classinformer-code/Plugin/checkbox-checked.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified classinformer-code/Plugin/completed.ogg
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions classinformer-code/Plugin/dialog.ui
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
<enum>QFrame::Sunken</enum>
</property>
<property name="text">
<string>&lt;a href=&quot;https://github.com/rohitab/ClassInformer&quot; style=&quot;color:#AA00FF;&quot;&gt;Source on GitHub&lt;/a&gt;</string>
<string>&lt;a href=&quot;https://github.com/herosi/classinformer&quot; style=&quot;color:#AA00FF;&quot;&gt;Source on GitHub&lt;/a&gt;</string>
</property>
<property name="textFormat">
<enum>Qt::AutoText</enum>
Expand Down Expand Up @@ -220,7 +220,7 @@
<string notr="true"/>
</property>
<property name="text">
<string>Version: 2.9
<string>Version: 2.91
By Rohitab Batra
By Hiroshi Suzuki
By Sirmabus</string>
Expand Down
Empty file modified classinformer-code/Plugin/icon.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified classinformer-code/Plugin/progress-style.qss
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/style.qss
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/undname.h
100644 → 100755
Empty file.
Empty file modified classinformer-code/Plugin/view-style.qss
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_OggPlayer/IDA_OggPlayer.sln
100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions ida-support-library-code/IDA_OggPlayer/IDA_OggPlayer.vcxproj
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,24 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Expand Down
Empty file.
Empty file.
Empty file modified ida-support-library-code/IDA_OggPlayer/IdaOgg.cpp
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_OggPlayer/IdaOgg.h
100644 → 100755
Empty file.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayer.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayer.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayer64.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayer64.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayer64D.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayer64D.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayerD.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_OggPlayer/IdaOggPlayerD.pdb
100644 → 100755
Binary file not shown.
4 changes: 2 additions & 2 deletions ida-support-library-code/IDA_OggPlayer/PropertySheet.props
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<IDADIR>C:\Program Files\IDA Pro 8.2\</IDADIR>
<IDASDK>..\..\idasdk_pro82\</IDASDK>
<IDADIR>C:\Program Files\IDA Professional 9.0\</IDADIR>
<IDASDK>..\..\idasdk90\</IDASDK>
</PropertyGroup>
<PropertyGroup />
<ItemDefinitionGroup />
Expand Down
Empty file modified ida-support-library-code/IDA_OggPlayer/original README.md
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_OggPlayer/stb_vorbis.cpp
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_OggPlayer/stb_vorbis.h
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_OggPlayer/stb_vorbis.txt
100644 → 100755
Empty file.
Empty file.
6 changes: 3 additions & 3 deletions ida-support-library-code/IDA_SegmentSelect/Lib/PropertySheet.props
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<IDADIR>C:\Program Files\IDA Pro 8.2\</IDADIR>
<QTDIR>C:\Qt\5.15.2-x64\</QTDIR>
<IDASDK>..\..\..\idasdk_pro82\</IDASDK>
<IDADIR>C:\Program Files\IDA Professional 9.0\</IDADIR>
<QTDIR>..\..\..\..\Qt\5.15.2-x64\</QTDIR>
<IDASDK>..\..\..\idasdk90\</IDASDK>
</PropertyGroup>
<PropertyGroup />
<ItemDefinitionGroup />
Expand Down
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/SegSelect.cpp
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/SegSelect.h
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/SegSelectRes.qrc
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/SegmentDialog.h
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/SegmentDialog.ui
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/code_seg.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/data_seg.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/extrn_seg.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/idaq_seg.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions ida-support-library-code/IDA_SegmentSelect/Lib/lib.vcxproj
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Expand Down
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/lib.vcxproj.user
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_SegmentSelect/Lib/other_seg.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ida-support-library-code/IDA_SegmentSelect/SegSelect.LiB
100644 → 100755
Binary file not shown.
Empty file modified ida-support-library-code/IDA_SegmentSelect/SegSelect.h
100644 → 100755
Empty file.
Binary file modified ida-support-library-code/IDA_SegmentSelect/SegSelect64.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_SegmentSelect/SegSelect64D.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_SegmentSelect/SegSelectD.LiB
100644 → 100755
Binary file not shown.
Empty file modified ida-support-library-code/IDA_WaitEx/IDA_WaitBoxEx.sln
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/IDA_WaitBoxEx.txt
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/MyQProgressDialog.h
100644 → 100755
Empty file.
6 changes: 3 additions & 3 deletions ida-support-library-code/IDA_WaitEx/Lib/PropertySheet.props
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<IDADIR>C:\Program Files\IDA Pro 8.2\</IDADIR>
<QTDIR>C:\Qt\5.15.2-x64\</QTDIR>
<IDASDK>..\..\..\idasdk_pro82\</IDASDK>
<IDADIR>C:\Program Files\IDA Professional 9.0\</IDADIR>
<QTDIR>..\..\..\..\Qt\5.15.2-x64\</QTDIR>
<IDASDK>..\..\..\idasdk90\</IDASDK>
</PropertyGroup>
<PropertyGroup />
<ItemDefinitionGroup />
Expand Down
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/WaitBoxEx.cpp
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/WaitBoxEx.h
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/WinTaskProgress.cpp
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/WinTaskProgress.h
100644 → 100755
Empty file.
16 changes: 8 additions & 8 deletions ida-support-library-code/IDA_WaitEx/Lib/lib.vcxproj
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -44,46 +44,46 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MDS Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSD ReleaseEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MDS Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MDS DebugEA64|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Expand Down
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/lib.vcxproj.filters
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/Lib/lib.vcxproj.user
100644 → 100755
Empty file.
16 changes: 8 additions & 8 deletions ida-support-library-code/IDA_WaitEx/Plugin Example/Plugin Example.vcxproj
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -44,52 +44,52 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugEA64|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MDS Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MDS DebugEA64|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseEA64|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MDS Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MSD ReleaseEA64|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>NotSet</CharacterSet>
</PropertyGroup>
Expand Down
Empty file.
Empty file.
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/WaitBoxEx.LiB
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/WaitBoxEx.h
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/WaitBoxEx.pdb
100644 → 100755
Empty file.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxEx64.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxEx64.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExD.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExD.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExD64.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExD64.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMd.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMd.pdb
100644 → 100755
Binary file not shown.
Empty file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMd64.LiB
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMd64.pdb
100644 → 100755
Empty file.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMdD.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMdD.pdb
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMdD64.LiB
100644 → 100755
Binary file not shown.
Binary file modified ida-support-library-code/IDA_WaitEx/WaitBoxExMdD64.pdb
100644 → 100755
Binary file not shown.
Empty file modified ida-support-library-code/README.md
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/SupportLib/SupportLib.sln
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/SupportLib/SupportLib.vcxproj
100644 → 100755
Empty file.
Empty file modified ida-support-library-code/SupportLib/SupportLib.vcxproj.user
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion ida-support-library-code/SupportLib/Utility.cpp
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ ea_t find_binary2(ea_t start_ea, ea_t end_ea, LPCSTR pattern, LPCSTR file, int l
qstring errorStr;
if (parse_binpat_str(&searchVec, start_ea, pattern, 16, PBSENC_DEF1BPU, &errorStr))
#if IDA_SDK_VERSION >= 900
return bin_search3(start_ea, end_ea, searchVec, (BIN_SEARCH_FORWARD | BIN_SEARCH_NOBREAK | BIN_SEARCH_NOSHOW));
return bin_search(start_ea, end_ea, searchVec, (BIN_SEARCH_FORWARD | BIN_SEARCH_NOBREAK | BIN_SEARCH_NOSHOW));
#else
return bin_search2(start_ea, end_ea, searchVec, (BIN_SEARCH_FORWARD | BIN_SEARCH_NOBREAK | BIN_SEARCH_NOSHOW));
#endif
Expand Down
Empty file modified ida-support-library-code/SupportLib/Utility.h
100644 → 100755
Empty file.

0 comments on commit e945dac

Please sign in to comment.