Ejemplo n.º 1
0
 public RemoteProcess(RemotePort port)
 {
     _port        = port;
     _adProcessId = new AD_PROCESS_ID
     {
         ProcessIdType = (uint)enum_AD_PROCESS_ID.AD_PROCESS_ID_GUID,
         guidProcessId = _id
     };
     Program = new Program(this);
 }
Ejemplo n.º 2
0
 int IDebugPortSupplier2.AddPort(IDebugPortRequest2 pRequest, out IDebugPort2 ppPort)
 {
     ppPort = new RemotePort(this);
     return(VSConstants.S_OK);
 }