コード例 #1
0
 public static extern IntPtr OpenThread(APIProxy.ThreadAccessFlags desiredAccess, bool inheritHandle, uint threadID);
コード例 #2
0
ファイル: Handle.cs プロジェクト: Yoshi-Exeler/ManagedMemory
 public static Handle GetThreadHandle(uint threadID, APIProxy.ThreadAccessFlags access)
 {
     return(APIProxy.OpenThread(access, threadID));
 }