Merge pull request #426 from debug-hf/patch-1

Update AntiDebug.Win32.cs
This commit is contained in:
Ki 2016-02-04 01:59:38 +08:00
Родитель b994077f81 dac89aec43
Коммит 181bbed022
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 {
}
}
}
}
}