Hello and thanks in advance to anyone thatll try to help. I'm trying to set a CBT windows hook, which works well when Im setting it globally, but fails whenever I try to attach it to a single thread. As far as I know, Im doing everything by the book: - I exposed the hook procedure from an unmanaged dll - my application, the dll and the thread's process are all 32 bit - The thread ID I use is correct (confirmed with spy++)
When I tried to hook only one thread from a c++ code, I managed to do it... can you hook a single thread only from unmanaged code?
here is my code anyway:
[DllImport( "user32.dll", SetLastError = true )]
static extern IntPtr SetWindowsHookEx ( int hookType, UIntPtr lpfn, IntPtr hMod, uint dwThreadId );
[DllImport( "kernel32", CharSet = CharSet.Ansi, ExactSpelling = true, SetLastError = true )]
public static extern UIntPtr GetProcAddress ( IntPtr hModule, string procName );
[DllImport( "kernel32", SetLastError = true, CharSet = CharSet.Unicode )]
public static extern IntPtr LoadLibrary ( string libraryName );
const int WH_CBT = 5;
void SetHook ()
{
IntPtr dll = LoadLibrary( LIBRARY );
UIntPtr proc = GetProcAddress( dll, PROC );
uint threadId = GetAppWindowThreadId();
//assume that the threadId of the external window is correct, as I said I verified with spy++
//and assume that dll and proc both get correct values
IntPtr hookAddress = SetWindowsHookEx( WH_CBT , proc, dll, threadId );
//hookAddress is 0
}