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:
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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue