http://bugs.winehq.org/show_bug.cgi?id=13683
--- Comment #25 from Erich Hoover erich.e.hoover@gmail.com --- (In reply to comment #24)
... In particular, this line may correlate to my pressing 'Q' (i.e. when the cursor should switch):
trace:cursor:LoadIconW (nil), #7f05
Unlikely, "(nil), #7f05" corresponds to IDI_WINLOGO (default application icon).
Is there a way to patch the code quickly to dump the cursor resource being used by the LoadIconW in order to confirm its the missing cursor?
Yes, it's a little complicated though.
Here are the total cursor:LoadIconW, which should at least toggle between two cursors: ... trace:cursor:LoadIconW (nil), #7f05
Load default cursor.
trace:cursor:LoadIconW 0x7edb0000, L"" trace:cursor:LoadIconW (nil), L""
This is unusual, but it probably corresponds to resource #0000.
... trace:cursor:LoadIconW 0x7edf0000, #0001 trace:cursor:LoadIconW 0x7edb0000, #0001 ...
Load icon resource ID #0001 from the given module/application. So, if you open the application EXE with one of the many icon viewing applications then you will probably find the cursor embedded in the application.