Setting a Visual Studio breakpoint on a Win32 API function in user32.dll
I recently had a problem with my Windows application causing the desktop icons to flicker. I knew that the LockWindowUpdate API could cause that, but I also knew I didn’t use it. Maybe one of the libraries I use (MFC?) was doing it.
So I wanted to set a Visual Studio breakpoint on that API’s location. I tried
{,,user32.dll}_LockWindowUpdate@4 but that didn’t work. I knew that {,,user32.dll}_SendMessageA@16 works for setting a breakpoint on SendMessage (which is also in user32.dll), so why doesn’t the same thing work for LockWindowUpdate?
It turns out that the function is called NtUserLockWindowUpdate as far as the debugger is concerned, so you need to use {,,user32.dll}_NtUserLockWindowUpdate@4
I don’t know which other APIs have that NtUser prefix, but I bet there are some.
Interestingly, the exported symbol as reported by Dependency Walker is called LockWindowUpdate – it’s only in the debug symbols that it’s NtUserLockWindowUpdate. I used Dependency Walker to find the symbol’s address: my breakpoint for SendMessage was at 7D94B5BA and Dependency Walker told me that its export address was 1b5ba. LockWindowUpdate was exported at 27d5c, so a quick bit of maths pointed me to 7D957D5C, and hence the real name of the function:

(By the way, Raymond Chen’s series of posts on LockWindowUpdate are required reading for anyone thinking of using it: What does LockWindowUpdate do?)





June 15th, 2009 at 7:13 pm
I don’t know how these expressions work.
When I type {,,user32.dll}_SendMessageA@16 into the watch window, I get the error “CXX0036: Error: bad context {…} specification”
June 15th, 2009 at 7:56 pm
@Asher: You type the expression into the New Breakpoint dialog, not the Watch window.
June 1st, 2010 at 10:19 am
I want to do this kind of thing at the moment. When reading about the facility, I immediately thought “I’ll be amazed if this works”, and sure enough it doesn’t. I tried your ‘SendMessage’ breakpoint but no dice. I wonder what I could be doing wrong. The MS page on this is of course not much use: http://msdn.microsoft.com/en-us/library/d16ayc6z.aspx
June 1st, 2010 at 10:49 am
…and I got it working.
I guess I should have read the words ‘native only’ on the MS page, and actually paid attention!