Skip to content

Commit

Permalink
WIN mat' ego XP...
Browse files Browse the repository at this point in the history
  • Loading branch information
UnrealKaraulov committed Jan 10, 2025
1 parent 24adf00 commit 76cb48d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions DotAAllstarsHelperFinal/DotAAllstarsHelper.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@
<WarningLevel>Level4</WarningLevel>
<FunctionLevelLinking>
</FunctionLevelLinking>
<IntrinsicFunctions>
</IntrinsicFunctions>
<IntrinsicFunctions>false</IntrinsicFunctions>
<SDLCheck>
</SDLCheck>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Expand All @@ -67,7 +66,7 @@
</BasicRuntimeChecks>
<ControlFlowGuard>
</ControlFlowGuard>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet>NotSet</EnableEnhancedInstructionSet>
<EnableParallelCodeGeneration>
</EnableParallelCodeGeneration>
<FloatingPointModel>
Expand Down Expand Up @@ -106,7 +105,8 @@
<SetChecksum>true</SetChecksum>
<CLRSupportLastError>
</CLRSupportLastError>
<RandomizedBaseAddress>true</RandomizedBaseAddress>
<RandomizedBaseAddress>
</RandomizedBaseAddress>
<DataExecutionPrevention>false</DataExecutionPrevention>
<EnableUAC>false</EnableUAC>
<IgnoreAllDefaultLibraries>
Expand All @@ -118,10 +118,11 @@
<GenerateMapFile>false</GenerateMapFile>
<AssemblyDebug>
</AssemblyDebug>
<MinimumRequiredVersion>6</MinimumRequiredVersion>
<MinimumRequiredVersion>5.01</MinimumRequiredVersion>
<LargeAddressAware>false</LargeAddressAware>
<FixedBaseAddress>false</FixedBaseAddress>
<BaseAddress>0x50000000</BaseAddress>
<BaseAddress>
</BaseAddress>
</Link>
<Manifest>
<UpdateFileHashes>true</UpdateFileHashes>
Expand Down
6 changes: 3 additions & 3 deletions DotAAllstarsHelperFinal/Main.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,6 @@ extern pGame_Wc3MessageBox Game_Wc3MessageBox;
typedef void(__fastcall* pLoadFrameDefList)(const char* filepath, int env);
extern pLoadFrameDefList LoadFrameDefList;

std::string ToLower(std::string str);
std::string ToUpper(std::string str);

extern bool MainFuncWork;

extern int ChatEditBoxVtable;
Expand Down Expand Up @@ -463,6 +460,9 @@ bool starts_with(const std::wstring& str, wchar_t prefix);
bool ends_with(const std::string& str, char suffix);
bool ends_with(const std::wstring& str, wchar_t suffix);

std::string ToLower(std::string str);
std::string ToUpper(std::string str);

std::string utf16_to_utf8(const std::wstring& wideStr);
std::wstring utf8_to_utf16(const std::string& utf8_str, bool remove_notprint = false);

Expand Down

0 comments on commit 76cb48d

Please sign in to comment.