public ScreenshotInjection(
     RemoteHooking.IContext context,
     String channelName,
     String version,
     bool showOverlay)
 {
     // Get reference to IPC to host application
     // Note: any methods called or events triggered against _interface will execute in the host process.
     _interface = RemoteHooking.IpcConnectClient<ScreenshotInterface.ScreenshotInterface>(channelName);
 }
Esempio n. 2
0
 public ScreenshotInjection(
     RemoteHooking.IContext context,
     String channelName,
     String version,
     bool showOverlay)
 {
     // Get reference to IPC to host application
     // Note: any methods called or events triggered against _interface will execute in the host process.
     _interface = RemoteHooking.IpcConnectClient <ScreenshotInterface.ScreenshotInterface>(channelName);
 }
Esempio n. 3
0
 public DXHookD3D11(ScreenshotInterface.ScreenshotInterface ssInterface)
     : base(ssInterface)
 {
 }
Esempio n. 4
0
 public BaseDXHook(ScreenshotInterface.ScreenshotInterface ssInterface)
 {
     this.Interface = ssInterface;
 }
Esempio n. 5
0
 public DXHookD3D10(ScreenshotInterface.ScreenshotInterface ssInterface)
     : base(ssInterface)
 {
     this.DebugMessage("Create");
 }