Ejemplo n.º 1
0
 public static void DetourBarrierEndStackTrace(IntPtr backup)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourBarrierEndStackTrace(backup));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourBarrierEndStackTrace(backup));
     }
 }
Ejemplo n.º 2
0
 public static void DetourGetHookBypassAddress(IntPtr handle, out IntPtr address)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourGetHookBypassAddress(handle, out address));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourGetHookBypassAddress(handle, out address));
     }
 }
Ejemplo n.º 3
0
 public static void DetourBarrierGetAddressOfReturnAddress(out IntPtr returnValue)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourBarrierGetAddressOfReturnAddress(out returnValue));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourBarrierGetAddressOfReturnAddress(out returnValue));
     }
 }
Ejemplo n.º 4
0
 public static void DetourBarrierCallStackTrace(IntPtr backup, long maxCount, out long outMaxCount)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourBarrierCallStackTrace(backup, maxCount, out outMaxCount));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourBarrierCallStackTrace(backup, maxCount, out outMaxCount));
     }
 }
Ejemplo n.º 5
0
 public static void DetourBarrierGetCallingModule(out IntPtr returnValue)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourBarrierGetCallingModule(out returnValue));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourBarrierGetCallingModule(out returnValue));
     }
 }
Ejemplo n.º 6
0
 public static int DetourBarrierGetCallback(out IntPtr returnValue)
 {
     if (Is64Bit)
     {
         return(NativeApi64.DetourBarrierGetCallback(out returnValue));
     }
     else
     {
         return(NativeApi32.DetourBarrierGetCallback(out returnValue));
     }
 }
Ejemplo n.º 7
0
 public static void DetourWaitForPendingRemovals()
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourWaitForPendingRemovals());
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourWaitForPendingRemovals());
     }
 }
Ejemplo n.º 8
0
 public static void DetourUninstallHook(IntPtr refHandle)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourUninstallHook(refHandle));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourUninstallHook(refHandle));
     }
 }
Ejemplo n.º 9
0
 public static void DetourUninstallAllHooks()
 {
     if (Is64Bit)
     {
         NativeApi64.DetourUninstallAllHooks();
     }
     else
     {
         NativeApi32.DetourUninstallAllHooks();
     }
 }
Ejemplo n.º 10
0
 public static void DetourSetGlobalExclusiveACL(
     int[] threadIdList,
     int threadCount)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourSetGlobalExclusiveACL(threadIdList, threadCount));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourSetGlobalExclusiveACL(threadIdList, threadCount));
     }
 }
Ejemplo n.º 11
0
 public static bool DetourCreateProcessWithDllsExW(
     string lpApplicationName,
     string lpCommandLine,
     IntPtr lpProcessAttributes,
     IntPtr lpThreadAttributes,
     bool bInheritHandles,
     uint dwCreationFlags,
     IntPtr lpEnvironment,
     string lpCurrentDirectory,
     IntPtr lpStartupInfo,
     IntPtr lpProcessInformation,
     uint nDlls,
     IntPtr rlpDlls,
     IntPtr pfCreateProcessW)
 {
     if (Is64Bit)
     {
         return(NativeApi64.DetourCreateProcessWithDllsExW(
                    lpApplicationName,
                    lpCommandLine,
                    lpProcessAttributes,
                    lpThreadAttributes,
                    bInheritHandles,
                    dwCreationFlags,
                    lpEnvironment,
                    lpCurrentDirectory,
                    lpStartupInfo,
                    lpProcessInformation,
                    nDlls,
                    rlpDlls,
                    pfCreateProcessW));
     }
     else
     {
         return(NativeApi32.DetourCreateProcessWithDllsExW(
                    lpApplicationName,
                    lpCommandLine,
                    lpProcessAttributes,
                    lpThreadAttributes,
                    bInheritHandles,
                    dwCreationFlags,
                    lpEnvironment,
                    lpCurrentDirectory,
                    lpStartupInfo,
                    lpProcessInformation,
                    nDlls,
                    rlpDlls,
                    pfCreateProcessW));
     }
 }
Ejemplo n.º 12
0
 public static void DetourSetInclusiveACL(
     int[] threadIdList,
     int threadCount,
     IntPtr handle)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourSetInclusiveACL(threadIdList, threadCount, handle));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourSetInclusiveACL(threadIdList, threadCount, handle));
     }
 }
Ejemplo n.º 13
0
 public static void DetourIsThreadIntercepted(
     IntPtr handle,
     int threadId,
     out bool result)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourIsThreadIntercepted(handle, threadId, out result));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourIsThreadIntercepted(handle, threadId, out result));
     }
 }
Ejemplo n.º 14
0
 public static IntPtr DetourFindFunction(
     string lpModule,
     string lpFunction)
 {
     if (Is64Bit)
     {
         return(NativeApi64.DetourFindFunction(lpModule,
                                               lpFunction));
     }
     else
     {
         return(NativeApi32.DetourFindFunction(lpModule,
                                               lpFunction));
     }
 }
Ejemplo n.º 15
0
 public static void DetourInstallHook(
     IntPtr entryPoint,
     IntPtr hookProcedure,
     IntPtr callback,
     IntPtr handle)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourInstallHook(entryPoint, hookProcedure, callback, handle));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourInstallHook(entryPoint, hookProcedure, callback, handle));
     }
 }