LhBarrierGetCallingModule() private method

private LhBarrierGetCallingModule ( IntPtr &OutValue ) : Int32
OutValue System.IntPtr
return System.Int32
コード例 #1
0
ファイル: DllImport.cs プロジェクト: rhmoult/EasyHook
 public static void LhBarrierGetCallingModule(out IntPtr OutValue)
 {
     if (Is64Bit)
     {
         Force(NativeAPI_x64.LhBarrierGetCallingModule(out OutValue));
     }
     else
     {
         Force(NativeAPI_x86.LhBarrierGetCallingModule(out OutValue));
     }
 }