mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-05 13:32:48 -05:00
Ben Rudiak-Gould points out that we should be using WM_APP as the base for
our app-private window messages, which is considerably higher than the WM_XUSER we arbitrarily chose. (This isn't known to be causing any actual problems. The fix seems not to have obviously broken anything.) [originally from svn r6183] [this svn revision also touched putty-wishlist]
This commit is contained in:
@ -50,9 +50,9 @@
|
||||
/* Maximum number of sessions on saved-session submenu */
|
||||
#define MENU_SAVED_MAX ((IDM_SAVED_MAX-IDM_SAVED_MIN) / MENU_SAVED_STEP)
|
||||
|
||||
#define WM_IGNORE_CLIP (WM_XUSER + 2)
|
||||
#define WM_FULLSCR_ON_MAX (WM_XUSER + 3)
|
||||
#define WM_AGENT_CALLBACK (WM_XUSER + 4)
|
||||
#define WM_IGNORE_CLIP (WM_APP + 2)
|
||||
#define WM_FULLSCR_ON_MAX (WM_APP + 3)
|
||||
#define WM_AGENT_CALLBACK (WM_APP + 4)
|
||||
|
||||
/* Needed for Chinese support and apparently not always defined. */
|
||||
#ifndef VK_PROCESSKEY
|
||||
|
Reference in New Issue
Block a user