Update AntiDebug.Win32.cs
Fixes a bug with Windows 8/10 that causes a crash using OutputDebugString
This commit is contained in:
Родитель
78e78fae06
Коммит
dac89aec43
|
@ -22,7 +22,7 @@ namespace Confuser.Runtime {
|
|||
[DllImport("kernel32.dll")]
|
||||
static extern bool IsDebuggerPresent();
|
||||
|
||||
[DllImport("kernel32.dll")]
|
||||
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
|
||||
static extern int OutputDebugString(string str);
|
||||
|
||||
static void Worker(object thread) {
|
||||
|
@ -67,4 +67,4 @@ namespace Confuser.Runtime {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче