1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-22 17:48:01 +02:00

Allow clicking on reg in mem window, other minor fixes

This commit is contained in:
Brian Fiete 2019-12-25 12:43:45 -08:00
parent 4dcd7f9c6a
commit 2618b29daa
13 changed files with 96 additions and 32 deletions

View file

@ -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();