mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-05 15:56:00 +02:00
Allow clicking on reg in mem window, other minor fixes
This commit is contained in:
parent
4dcd7f9c6a
commit
2618b29daa
13 changed files with 96 additions and 32 deletions
|
@ -143,10 +143,34 @@ void TestMem()
|
|||
memcpy(cPtr, str, 3);
|
||||
}
|
||||
|
||||
void Test6()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void Test5(int a, void* b, void* c)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void Test4(int a, int b, int c)
|
||||
{
|
||||
Test5(10, Test6, NULL);
|
||||
}
|
||||
|
||||
void Test3(int a)
|
||||
{
|
||||
Test4(100, 200, 300);
|
||||
}
|
||||
|
||||
// THIS IS VERSION 6.
|
||||
extern "C"
|
||||
__declspec(dllexport) void Test2(int aa, int bb, int cc, int dd)
|
||||
{
|
||||
Test3(10);
|
||||
|
||||
char* strP = "Hey yo";
|
||||
|
||||
TestMem();
|
||||
|
||||
Zorq();
|
||||
|
|
|
@ -88,6 +88,7 @@
|
|||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
|
@ -123,6 +124,7 @@
|
|||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
|
@ -140,6 +142,7 @@
|
|||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue