예제 #1
0
파일: NTdll.cs 프로젝트: sbarisic/Hackery
 public PROCESS_INFORMATION(IntPtr Process, IntPtr Thread, uint PID, uint TID)
 {
     this.Process            = Process;
     this.Thread             = Thread;
     this.ClientId           = new CLIENT_ID();
     this.ClientId.ProcessID = PID;
     this.ClientId.ThreadID  = TID;
 }
예제 #2
0
파일: NTdll.cs 프로젝트: cartman300/Hackery
 public PROCESS_INFORMATION(IntPtr Process, IntPtr Thread, uint PID, uint TID)
 {
     this.Process = Process;
     this.Thread = Thread;
     this.ClientId = new CLIENT_ID();
     this.ClientId.ProcessID = PID;
     this.ClientId.ThreadID = TID;
 }
예제 #3
0
파일: NTdll.cs 프로젝트: cartman300/Hackery
        public static extern bool RtlCreateUserThread(IntPtr Proc, IntPtr SecDesc, bool CreateSuspended, uint StackZeroBits,
			uint StackReserved, uint StackCommit, IntPtr StartAddr, IntPtr StartParam, IntPtr Thread, CLIENT_ID* Result);