1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 07:15:59 +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

@ -141,9 +141,13 @@ namespace System.FFI
{
NotSet = 0,
StdCall = 1,
#unwarn
ThisCall = 1,
#unwarn
FastCall = 1,
#unwarn
MS_CDecl = 1,
#unwarn
Default = 1
}
#else

View file

@ -26,6 +26,7 @@ namespace System.Globalization
TAIWANLUNISOLAR = 21,
PERSIAN = 22,
UMALQURA = 23,
#unwarn
LAST_CALENDAR = 23 // Last calendar ID
}

View file

@ -893,7 +893,9 @@ namespace System.Reflection
// vtable layout mask - Use this mask to retrieve vtable attributes.
VtableLayoutMask = 0x0100,
#unwarn
ReuseSlot = 0x0000, // The default.
#unwarn
NewSlot = 0x0100, // Method always gets a new slot in the vtable.
// end vtable layout mask

View file

@ -32,6 +32,7 @@ namespace System
ENABLE_AAA = 0x10000,
FROM_DEFAULT_CONTEXT = 0x20000,
ACTIVATE_X86_SERVER = 0x40000,
#unwarn
ACTIVATE_32_BIT_SERVER = ACTIVATE_X86_SERVER,
ACTIVATE_64_BIT_SERVER = 0x80000,
ENABLE_CLOAKING = 0x100000,
@ -198,6 +199,8 @@ namespace System
public const int32 KEY_ALL_ACCESS = 0x000f003f;
public const int32 MB_OK = 0;
public const int32 MB_OKCANCEL = 1;
public const int32 MB_YESNO = 4;
public const int32 MB_ICONHAND = 0x10;
public const int32 MB_ICONQUESTION = 0x20;
@ -1361,16 +1364,16 @@ namespace System
[CLink, StdCall]
public static extern IntBool SetFileAttributesW(char16* name, int32 attribs);
[CLink, StdCall]
[Import("user32.lib"), CLink, StdCall]
public static extern int32 MessageBoxA(HWnd hWnd, char8* text, char8* caption, int32 type);
[CLink, StdCall]
[Import("user32.lib"), CLink, StdCall]
public static extern int32 MessageBoxW(HWnd hWnd, char16* text, char16* caption, int32 type);
[CLink, StdCall]
public static extern int32 SetErrorMode(int32 errorMode);
[CLink, StdCall]
[Import("user32.lib"), CLink, StdCall]
public static extern HWnd GetActiveWindow();
[Import("user32.lib"), CLink, StdCall]