Ejemplo n.º 1
0
 public CreateProcessARemoteHooker(
     RemoteHooking.IContext inContext,
     string inChannelName) : base(inContext, inChannelName)
 {
     _createProcessAHookerImplementation =
         new CreateProcessAHookerImplementation <CreateProcessARemoteHooker>(this);
 }
Ejemplo n.º 2
0
 public static bool CreateProcessHandler(string lpApplicationName, string lpCommandLine,
                                         IntPtr lpProcessAttributes, IntPtr lpThreadAttributes,
                                         bool bInheritHandles, uint dwCreationFlags, IntPtr lpEnvironment,
                                         string lpCurrentDirectory, ref StartupInfoA lpStartupInfo, ref ProcessInformation pInfo)
 {
     return(CreateProcessAHookerImplementation <CreateProcessARemoteHooker> .CreateProcessHandlerStatic(
                lpApplicationName, lpCommandLine,
                lpProcessAttributes, lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment,
                lpCurrentDirectory, ref lpStartupInfo, ref pInfo));
 }
Ejemplo n.º 3
0
 public CreateProcessAHooker()
 {
     _createProcessAHookerImplementation = new CreateProcessAHookerImplementation <CreateProcessAHooker>(this);
 }