I'm looking at the RegisterHotKey Function:
http://msdn.microsoft.com/en-us/library/ms646309(VS.85).aspx
BOOL RegisterHotKey(
__in HWND hWnd,
__in int id,
__in UINT fsModifiers,
__in UINT vk
);
I've been using IntPtr to pass in the first argument,m which works fine in most cases. But now I need to deliberately pass a null pointer as the first argument, which IntPtr (deliberately) will not do. I'm new to .Net, and this has me perplexed. How can I do this?