Private Declare Function RtlAdjustPrivilege Lib "ntdll.dll" (ByVal Privilege As Long, ByVal Enable As Long, ByVal CurrentThread As Long, Enabled As Long) As Long
'函数声明Const SE_DEBUG_PRIVILEGE = &H14Call RtlAdjustPrivilege(SE_DEBUG_PRIVILEGE, 1, 0, 0)上面这个听说是能将自身提升到Debug权限的,那么如果要将其他程序提到Debug要怎么改呢?
返回值是啥才算成功呢?如果要提到System的话该把那个常数改成啥呢?麻烦帮忙解答下!谢谢!!