Fixes a bug with Windows 8/10 that causes a crash using OutputDebugString
This commit is contained in:
debug 2016-01-31 21:22:45 -06:00
Родитель 78e78fae06
Коммит dac89aec43
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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 {
}
}
}
}
}