¡@

Home 

c# Programming Glossary: processhandle

SetWindowsHookEx in C#

http://stackoverflow.com/questions/1811383/setwindowshookex-in-c-sharp

IntPtr lParam static IntPtr hHook IntPtr windowHandle uint processHandle HookProc PaintHookProcedure System.Runtime.InteropServices.DllImport.. uint threadID GetWindowThreadProcessId windowHandle out processHandle IntPtr hMod System.Runtime.InteropServices.Marshal.GetHINSTANCE..

How to know a process is 32-bit or 64-bit programmatically

http://stackoverflow.com/questions/1953377/how-to-know-a-process-is-32-bit-or-64-bit-programmatically

5 Environment.OSVersion.Version.Minor 1 IntPtr processHandle bool retVal try processHandle Process.GetProcessById process.Id.. 1 IntPtr processHandle bool retVal try processHandle Process.GetProcessById process.Id .Handle catch return false.. to the process return NativeMethods.IsWow64Process processHandle out retVal retVal return false not on 64 bit Windows internal..

Window hooks in c#

http://stackoverflow.com/questions/4974266/window-hooks-in-c-sharp

IntPtr lParam static IntPtr hHook IntPtr windowHandle uint processHandle HookProc PaintHookProcedure System.Runtime.InteropServices.DllImport.. uint threadID GetWindowThreadProcessId windowHandle out processHandle IntPtr hMod System.Runtime.InteropServices.Marshal.GetHINSTANCE..