コード例 #1
0
ファイル: NativeImport.cs プロジェクト: zcanann/CoreHook
 public static int DetourBarrierGetCallback(out IntPtr returnValue)
 {
     if (Is64Bit)
     {
         return(NativeApi64.DetourBarrierGetCallback(out returnValue));
     }
     else
     {
         return(NativeApi32.DetourBarrierGetCallback(out returnValue));
     }
 }