Beispiel #1
0
 public SecondaryUpdate(rdpContext *context)
 {
     this.context   = context;
     this.instance  = context->instance;
     this.update    = instance->update;
     this.secondary = update->secondary;
 }
Beispiel #2
0
 public PrimaryUpdate(rdpContext *context)
 {
     this.context  = context;
     this.instance = context->instance;
     this.update   = instance->update;
     this.primary  = update->primary;
 }
Beispiel #3
0
 public AltSecUpdate(rdpContext *context)
 {
     this.context  = context;
     this.instance = context->instance;
     this.update   = instance->update;
     this.altsec   = update->altsec;
 }
Beispiel #4
0
 public Update(rdpContext *context)
 {
     this.context  = context;
     this.instance = context->instance;
     this.update   = instance->update;
 }
Beispiel #5
0
 public Update(rdpContext* context)
 {
     this.context = context;
     this.instance = context->instance;
     this.update = instance->update;
 }
		public SecondaryUpdate(rdpContext* context)
		{
			this.context = context;
			this.instance = context->instance;
			this.update = instance->update;
			this.secondary = update->secondary;
		}
 public PrimaryUpdate(rdpContext* context)
 {
     this.context = context;
     this.instance = context->instance;
     this.update = instance->update;
     this.primary = update->primary;
 }
		public AltSecUpdate(rdpContext* context)
		{
			this.context = context;
			this.instance = context->instance;
			this.update = instance->update;
			this.altsec = update->altsec;
		}