List of windows messages with their description WM_

Started by
6 comments, last by LessBread 14 years, 5 months ago
Does anyone know of a good resource that explains all available windows messages? I have always written applications that only processes main messages WM_CREATE/WM_CLOSE/WM_QUIT/WM_KEYDOWNUPs, but there are many messages that are doing very important tasks, like updates after hibernation and so on. I would like to read what all of them do so that I would have better understanding of what happens behind the scenes and write a better programs in future, but I can't find a good list with explanations. Best I found was http://www.autohotkey.com/docs/misc/SendMessageList.htm and http://msdn.microsoft.com/en-us/library/aa452821.aspx Which is either a short list or a list that requires a lot of googling and copy/pasting. Maybe someone has a bookmark of such list?
______________________________Madman
Advertisement
I think MSDN is your best bet. The link you provided there is for Windows CE though.. this one might have more of what you're after: Notifications.
You can find them all in WinUser.h. Of course, there's no documentation, but that's clearly the authoritative version.

Other than that, most of the time you can find out what messages you need when looking at the documentation for the particular control you're using. For example, with the button control, there's this page, etc.
Quote:Original post by Erik Rufelt
I think MSDN is your best bet. The link you provided there is for Windows CE though.. this one might have more of what you're after: Notifications.

Yea, but there are messages like WM_PO that are not in this list ( http://msdn.microsoft.com/en-us/library/ms703398%28VS.85%29.aspx ), and I've never heard of them. Of course, you can probably just leave them to DefWndProc, but I would like to know all possible messages that exist and see if more than just top 10 should be processed.

Oh, well, seems I'll have to Google each one from .h file :(

How do you approach when you have to develop an application for sale, that is professional app, not a hobby grade stuff?
______________________________Madman
These are the WM_ message names as per the list in the Win7 RC checked version of win32k.sys and the SDK headers. As already said, the useful ones will be on MSDN somewhere and the others are mostly kernel internal, CE only, and/or defunct.

Quote:
Yea, but there are messages like WM_PO that

That's a typo, clicking on the link reveals it to be WM_POWERBROADCAST.
Quote:Original post by _Madman_
How do you approach when you have to develop an application for sale, that is professional app, not a hobby grade stuff?
Assuming the software is written using raw Win32 (which, frankly, is unlikely for any reasonably-sized commercial project), most messages can be safely sent to DefWindowProc without even looking at them. It's usually through a process of design and user feedback that features need to be added to the product which means you need to look at a particular notification. I don't think there would ever be a situation where you wanted to know all "possible" notifications your application received.

For example, you might get a bug report from a user saying, "when my computer goes to sleep while your program is running, if I restore it and go to perform operation X, it crashes". So you'll look at operation X and see that it holds open a network connection (say) that is disconnected when the computer sleeps.

So you fix the problem of a socket disconnect in that place, but then you think, well when the computer goes to sleep, I should probably gracefully close my connection first and re-open it when the computer wakes back up. So you do a google search for "site:msdn.microsoft.com sleep notification" and the first thing that pops up is "The Power-Aware Application" article from MSDN. So there you go, you'll learn which notifications to listen for, and how to handle it.
Quote:Original post by Codeka
Quote:Original post by _Madman_
How do you approach when you have to develop an application for sale, that is professional app, not a hobby grade stuff?
Assuming the software is written using raw Win32 (which, frankly, is unlikely for any reasonably-sized commercial project), most messages can be safely sent to DefWindowProc without even looking at them.


Well, I actually had an experience in developing MFC 9.0 app for commercial distribution and I am really, really scared now.

The MFC libraries are full of different bugs and weird behaviors in different places, like after hibernation / dpi change, that's why I'm trying to understand what's happening behind the scenes for my OpenGL project. And I'm seriously thinking about going native Win32.

I want to understand how to create a solid foundation for my application, but Google always returns same old, almost correct tutorials. I want to get the foundation right...
______________________________Madman
I put this together back in 2005. YMMV.

/* A complete table for reference - generated elsewhere idx | message name                   |  dec |  hex | msgproc handled return   0 | WM_NULL                        |    0 | 0000 | 0   1 | ABM_NEW                        |    0 | 0000 | indeterminate   2 | DL_CURSORSET                   |    0 | 0000 | indeterminate   3 | DL_STOPCURSOR                  |    1 | 0001 | indeterminate   4 | WM_CREATE                      |    1 | 0001 | 0   5 | ABM_REMOVE                     |    1 | 0001 | indeterminate   6 | DL_COPYCURSOR                  |    2 | 0002 | indeterminate   7 | WM_DESTROY                     |    2 | 0002 | 0   8 | ABM_QUERYPOS                   |    2 | 0002 | indeterminate   9 | WM_MOVE                        |    3 | 0003 | 0  10 | ABM_SETPOS                     |    3 | 0003 | indeterminate  11 | DL_MOVECURSOR                  |    3 | 0003 | indeterminate  12 | ABM_GETSTATE                   |    4 | 0004 | indeterminate  13 | WM_SIZE                        |    5 | 0005 | 0  14 | ABM_GETTASKBARPOS              |    5 | 0005 | indeterminate  15 | ABM_ACTIVATE                   |    6 | 0006 | indeterminate  16 | WM_ACTIVATE                    |    6 | 0006 | 0  17 | WM_SETFOCUS                    |    7 | 0007 | 0  18 | ABM_GETAUTOHIDEBAR             |    7 | 0007 | indeterminate  19 | ABM_SETAUTOHIDEBAR             |    8 | 0008 | indeterminate  20 | WM_KILLFOCUS                   |    8 | 0008 | 0  21 | ABM_WINDOWPOSCHANGED           |    9 | 0009 | indeterminate  22 | WM_SETVISIBLE                  |    9 | 0009 | unknown  23 | WM_ENABLE                      |   10 | 000A | 0  24 | ABM_SETSTATE                   |   10 | 000A | indeterminate  25 | WM_SETREDRAW                   |   11 | 000B | 0  26 | WM_SETTEXT                     |   12 | 000C | indeterminate  27 | WM_GETTEXT                     |   13 | 000D | indeterminate  28 | WM_GETTEXTLENGTH               |   14 | 000E | indeterminate  29 | WM_PAINT                       |   15 | 000F | 0  30 | WM_CLOSE                       |   16 | 0010 | 0  31 | WM_QUERYENDSESSION             |   17 | 0011 | indeterminate  32 | WM_QUIT                        |   18 | 0012 | n/a - never makes it to wndproc  33 | WM_QUERYOPEN                   |   19 | 0013 | non-zero  34 | WM_ERASEBKGND                  |   20 | 0014 | non-zero  35 | WM_SYSCOLORCHANGE              |   21 | 0015 | n/a  36 | WM_ENDSESSION                  |   22 | 0016 | 0  37 | WM_SYSTEMERROR                 |   23 | 0017 | unknown  38 | WM_SHOWWINDOW                  |   24 | 0018 | 0  39 | WM_CTLCOLOR                    |   25 | 0019 | HBRUSH  40 | WM_SETTINGCHANGE               |   26 | 001A | 0  41 | WM_DEVMODECHANGE               |   27 | 001B | 0  42 | WM_ACTIVATEAPP                 |   28 | 001C | 0  43 | WM_FONTCHANGE                  |   29 | 001D | n/a  44 | WM_TIMECHANGE                  |   30 | 001E | 0  45 | WM_CANCELMODE                  |   31 | 001F | 0  46 | WM_SETCURSOR                   |   32 | 0020 | non-zero  47 | WM_MOUSEACTIVATE               |   33 | 0021 | variable  48 | WM_CHILDACTIVATE               |   34 | 0022 | 0  49 | WM_QUEUESYNC                   |   35 | 0023 | 0  50 | WM_GETMINMAXINFO               |   36 | 0024 | 0  51 | WM_LOGOFF                      |   37 | 0025 | unknown  52 | WM_PAINTICON                   |   38 | 0026 | 0  53 | WM_ICONERASEBKGND              |   39 | 0027 | non-zero  54 | WM_NEXTDLGCTL                  |   40 | 0028 | 0  55 | WM_ALTTABACTIVE                |   41 | 0029 | unknown  56 | WM_SPOOLERSTATUS               |   42 | 002A | 0  57 | WM_DRAWITEM                    |   43 | 002B | non-zero  58 | WM_MEASUREITEM                 |   44 | 002C | non-zero  59 | WM_DELETEITEM                  |   45 | 002D | non-zero  60 | WM_VKEYTOITEM                  |   46 | 002E | variable  61 | WM_CHARTOITEM                  |   47 | 002F | variable  62 | WM_SETFONT                     |   48 | 0030 | n/a  63 | WM_GETFONT                     |   49 | 0031 | HFONT  64 | WM_SETHOTKEY                   |   50 | 0032 | variable  65 | WM_GETHOTKEY                   |   51 | 0033 | variable  66 | WM_FILESYSCHANGE               |   52 | 0034 | unknown  67 | WM_ISACTIVEICON                |   53 | 0035 | unknown  68 | WM_UNUSED0036                  |   54 | 0036 | n/a  69 | WM_QUERYDRAGICON               |   55 | 0037 | HCURSOR or HICON  70 | WM_WINHELP                     |   56 | 0038 | unknown  71 | WM_COMPAREITEM                 |   57 | 0039 | variable  72 | WM_FULLSCREEN                  |   58 | 003A | unknown  73 | WM_CLIENTSHUTDOWN              |   59 | 003B | unknown  74 | WM_DDEMLEVENT                  |   60 | 003C | unknown                                      |   63 | 003F | unknown       75 | WM_TESTING                     |   64 | 0040 | unknown  76 | WM_COMPACTING                  |   65 | 0041 | 0  77 | WM_OTHERWINDOWCREATED          |   66 | 0042 | unknown  78 | WM_OTHERWINDOWDESTROYED        |   67 | 0043 | unknown  79 | WM_COMMNOTIFY                  |   68 | 0044 | unknown  80 | WM_MEDIASTATUSCHANGE           |   69 | 0045 | unknown  81 | WM_WINDOWPOSCHANGING           |   70 | 0046 | 0  82 | WM_WINDOWPOSCHANGED            |   71 | 0047 | 0  83 | WM_POWER                       |   72 | 0048 | variable  84 | WM_COPYGLOBALDATA              |   73 | 0049 | unknown  85 | WM_COPYDATA                    |   74 | 004A | non-zero  86 | WM_CANCELJOURNAL               |   75 | 004B | n/a  87 | WM_LOGONNOTIFY                 |   76 | 004C | unknown  88 | WM_KEYF1                       |   77 | 004D | unknown  89 | WM_NOTIFY                      |   78 | 004E | variable  90 | WM_ACCESS_WINDOW               |   79 | 004F | unknown  91 | WM_INPUTLANGCHANGEREQUEST      |   80 | 0050 | return 0 to reject  92 | WM_INPUTLANGCHANGE             |   81 | 0051 | non-zero  93 | WM_TCARD                       |   82 | 0052 | always return 0  94 | WM_HELP                        |   83 | 0053 | indeterminate  95 | WM_USERCHANGED                 |   84 | 0054 | 0  96 | WM_NOTIFYFORMAT                |   85 | 0055 | variable  97 | WM_FINALDESTROY                |  112 | 0070 | unknown  98 | WM_MEASUREITEM_CLIENTDATA      |  113 | 0071 | unknown  99 | WM_CONTEXTMENU                 |  123 | 007B | indeterminate 100 | WM_STYLECHANGING               |  124 | 007C | 0 101 | WM_STYLECHANGED                |  125 | 007D | 0 102 | WM_DISPLAYCHANGE               |  126 | 007E | n/a 103 | WM_GETICON                     |  127 | 007F | variable 104 | WM_SETICON                     |  128 | 0080 | variable 105 | WM_NCCREATE                    |  129 | 0081 | non-zero 106 | WM_NCDESTROY                   |  130 | 0082 | 0 107 | WM_NCCALCSIZE                  |  131 | 0083 | variable 108 | WM_NCHITTEST                   |  132 | 0084 | indeterminate 109 | WM_NCPAINT                     |  133 | 0085 | 0 110 | WM_NCACTIVATE                  |  134 | 0086 | variable 111 | WM_GETDLGCODE                  |  135 | 0087 | variable 112 | WM_SYNCPAINT                   |  136 | 0088 | 0 113 | WM_SYNCTASK                    |  137 | 0089 | unknown 114 | WM_MYSTERY                     |  139 | 008B | unknown WM_KLUDGEMINRECT 115 | WM_NCMOUSEMOVE                 |  160 | 00A0 | 0 116 | WM_NCLBUTTONDOWN               |  161 | 00A1 | 0 117 | WM_NCLBUTTONUP                 |  162 | 00A2 | 0 118 | WM_NCLBUTTONDBLCLK             |  163 | 00A3 | 0 119 | WM_NCRBUTTONDOWN               |  164 | 00A4 | 0 120 | WM_NCRBUTTONUP                 |  165 | 00A5 | 0 121 | WM_NCRBUTTONDBLCLK             |  166 | 00A6 | 0 122 | WM_NCMBUTTONDOWN               |  167 | 00A7 | 0 123 | WM_NCMBUTTONUP                 |  168 | 00A8 | 0 124 | WM_NCMBUTTONDBLCLK             |  169 | 00A9 | 0 125 | WM_NCXBUTTONDOWN               |  171 | 00AB | non-zero 126 | WM_NCXBUTTONUP                 |  172 | 00AC | non-zero 127 | WM_NCXBUTTONDBLCLK             |  173 | 00AD | non-zero 128 | EM_GETSEL                      |  176 | 00B0 | indeterminate 129 | EM_SETSEL                      |  177 | 00B1 | indeterminate 130 | EM_GETRECT                     |  178 | 00B2 | indeterminate 131 | EM_SETRECT                     |  179 | 00B3 | indeterminate 132 | EM_SETRECTNP                   |  180 | 00B4 | indeterminate 133 | EM_SCROLL                      |  181 | 00B5 | indeterminate 134 | EM_LINESCROLL                  |  182 | 00B6 | indeterminate 135 | EM_SCROLLCARET                 |  183 | 00B7 | indeterminate 136 | EM_GETMODIFY                   |  184 | 00B8 | indeterminate 137 | EM_SETMODIFY                   |  185 | 00B9 | indeterminate 138 | EM_GETLINECOUNT                |  186 | 00BA | indeterminate 139 | EM_LINEINDEX                   |  187 | 00BB | indeterminate 140 | EM_SETHANDLE                   |  188 | 00BC | indeterminate 141 | EM_GETHANDLE                   |  189 | 00BD | indeterminate 142 | EM_GETTHUMB                    |  190 | 00BE | indeterminate 143 | EM_LINELENGTH                  |  193 | 00C1 | indeterminate 144 | EM_REPLACESEL                  |  194 | 00C2 | indeterminate 145 | EM_GETLINE                     |  196 | 00C4 | indeterminate 146 | EM_SETLIMITTEXT                |  197 | 00C5 | indeterminate 147 | EM_CANUNDO                     |  198 | 00C6 | indeterminate 148 | EM_UNDO                        |  199 | 00C7 | indeterminate 149 | EM_FMTLINES                    |  200 | 00C8 | indeterminate 150 | EM_LINEFROMCHAR                |  201 | 00C9 | indeterminate 151 | EM_SETTABSTOPS                 |  203 | 00CB | indeterminate 152 | EM_SETPASSWORDCHAR             |  204 | 00CC | indeterminate 153 | EM_EMPTYUNDOBUFFER             |  205 | 00CD | indeterminate 154 | EM_GETFIRSTVISIBLELINE         |  206 | 00CE | indeterminate 155 | EM_SETREADONLY                 |  207 | 00CF | indeterminate 156 | EM_SETWORDBREAKPROC            |  208 | 00D0 | indeterminate 157 | EM_GETWORDBREAKPROC            |  209 | 00D1 | indeterminate 158 | EM_GETPASSWORDCHAR             |  210 | 00D2 | indeterminate 159 | EM_SETMARGINS                  |  211 | 00D3 | indeterminate 160 | EM_GETMARGINS                  |  212 | 00D4 | indeterminate 161 | EM_GETLIMITTEXT                |  213 | 00D5 | indeterminate 162 | EM_POSFROMCHAR                 |  214 | 00D6 | indeterminate 163 | EM_CHARFROMPOS                 |  215 | 00D7 | indeterminate 164 | EM_SETIMESTATUS                |  216 | 00D8 | indeterminate 165 | EM_GETIMESTATUS                |  217 | 00D9 | indeterminate 166 | SBM_SETPOS                     |  224 | 00E0 | indeterminate 167 | SBM_GETPOS                     |  225 | 00E1 | indeterminate 168 | SBM_SETRANGE                   |  226 | 00E2 | indeterminate 169 | SBM_GETRANGE                   |  227 | 00E3 | indeterminate 170 | SBM_ENABLE_ARROWS              |  228 | 00E4 | indeterminate 171 | SBM_SETRANGEREDRAW             |  230 | 00E6 | indeterminate 172 | SBM_SETSCROLLINFO              |  233 | 00E9 | indeterminate 173 | SBM_GETSCROLLINFO              |  234 | 00EA | indeterminate 174 | BM_GETCHECK                    |  240 | 00F0 | indeterminate 175 | BM_SETCHECK                    |  241 | 00F1 | indeterminate 176 | BM_GETSTATE                    |  242 | 00F2 | indeterminate 177 | BM_SETSTATE                    |  243 | 00F3 | indeterminate 178 | BM_SETSTYLE                    |  244 | 00F4 | indeterminate 179 | BM_CLICK                       |  245 | 00F5 | indeterminate 180 | BM_GETIMAGE                    |  246 | 00F6 | indeterminate 181 | BM_SETIMAGE                    |  247 | 00F7 | indeterminate 182 | WM_INPUT                       |  255 | 00FF | 0 183 | WM_KEYDOWN                     |  256 | 0100 | 0 184 | WM_KEYUP                       |  257 | 0101 | 0 185 | WM_CHAR                        |  258 | 0102 | 0 186 | WM_DEADCHAR                    |  259 | 0103 | 0 187 | WM_SYSKEYDOWN                  |  260 | 0104 | 0 188 | WM_SYSKEYUP                    |  261 | 0105 | 0 189 | WM_SYSCHAR                     |  262 | 0106 | 0 190 | WM_SYSDEADCHAR                 |  263 | 0107 | 0 191 | WM_YOMICHAR                    |  264 | 0108 | unknown 192 | WM_CONVERTREQUEST              |  266 | 010A | unknown 193 | WM_CONVERTRESULT               |  267 | 010B | unknown 194 | WM_INTERIM                     |  268 | 010C | unknown 195 | WM_IME_STARTCOMPOSITION        |  269 | 010D | unknown 196 | WM_IME_ENDCOMPOSITION          |  270 | 010E | unknown 197 | WM_IME_COMPOSITION             |  271 | 010F | unknown 198 | WM_INITDIALOG                  |  272 | 0110 | variable 199 | WM_COMMAND                     |  273 | 0111 | 0 200 | WM_SYSCOMMAND                  |  274 | 0112 | 0 201 | WM_TIMER                       |  275 | 0113 | 0 202 | WM_HSCROLL                     |  276 | 0114 | 0 203 | WM_VSCROLL                     |  277 | 0115 | 0 204 | WM_INITMENU                    |  278 | 0116 | 0 205 | WM_INITMENUPOPUP               |  279 | 0117 | 0 206 | WM_SYSTIMER                    |  280 | 0118 | unknown 207 | WM_MENUSELECT                  |  287 | 011F | 0 208 | WM_MENUCHAR                    |  288 | 0120 | variable 209 | WM_ENTERIDLE                   |  289 | 0121 | 0 210 | WM_MENURBUTTONUP               |  290 | 0122 | indeterminate 211 | WM_MENUDRAG                    |  291 | 0123 | variable 212 | WM_MENUGETOBJECT               |  292 | 0124 | variable 213 | WM_UNINITMENUPOPUP             |  293 | 0125 | indeterminate 214 | WM_MENUCOMMAND                 |  294 | 0126 | indeterminate 215 | WM_CHANGEUISTATE               |  295 | 0127 | indeterminate 216 | WM_UPDATEUISTATE               |  296 | 0128 | indeterminate 217 | WM_QUERYUISTATE                |  297 | 0129 | indeterminate 218 | WM_CTLCOLORMSGBOX              |  306 | 0132 | HBRUSH 219 | WM_CTLCOLOREDIT                |  307 | 0133 | HBRUSH 220 | WM_CTLCOLORLISTBOX             |  308 | 0134 | HBRUSH 221 | WM_CTLCOLORBTN                 |  309 | 0135 | HBRUSH 222 | WM_CTLCOLORDLG                 |  310 | 0136 | HBRUSH 223 | WM_CTLCOLORSCROLLBAR           |  311 | 0137 | HBRUSH 224 | WM_CTLCOLORSTATIC              |  312 | 0138 | HBRUSH 225 | CB_GETEDITSEL                  |  320 | 0140 | indeterminate 226 | CB_LIMITTEXT                   |  321 | 0141 | indeterminate 227 | CB_SETEDITSEL                  |  322 | 0142 | indeterminate 228 | CB_ADDSTRING                   |  323 | 0143 | indeterminate 229 | CB_DELETESTRING                |  324 | 0144 | indeterminate 230 | CB_DIR                         |  325 | 0145 | indeterminate 231 | CB_GETCOUNT                    |  326 | 0146 | indeterminate 232 | CB_GETCURSEL                   |  327 | 0147 | indeterminate 233 | CB_GETLBTEXT                   |  328 | 0148 | indeterminate 234 | CB_GETLBTEXTLEN                |  329 | 0149 | indeterminate 235 | CB_INSERTSTRING                |  330 | 014A | indeterminate 236 | CB_RESETCONTENT                |  331 | 014B | indeterminate 237 | CB_FINDSTRING                  |  332 | 014C | indeterminate 238 | CB_SELECTSTRING                |  333 | 014D | indeterminate 239 | CB_SETCURSEL                   |  334 | 014E | indeterminate 240 | CB_SHOWDROPDOWN                |  335 | 014F | indeterminate 241 | CB_GETITEMDATA                 |  336 | 0150 | indeterminate 242 | CB_SETITEMDATA                 |  337 | 0151 | indeterminate 243 | CB_GETDROPPEDCONTROLRECT       |  338 | 0152 | indeterminate 244 | CB_SETITEMHEIGHT               |  339 | 0153 | indeterminate 245 | CB_GETITEMHEIGHT               |  340 | 0154 | indeterminate 246 | CB_SETEXTENDEDUI               |  341 | 0155 | indeterminate 247 | CB_GETEXTENDEDUI               |  342 | 0156 | indeterminate 248 | CB_GETDROPPEDSTATE             |  343 | 0157 | indeterminate 249 | CB_FINDSTRINGEXACT             |  344 | 0158 | indeterminate 250 | CB_SETLOCALE                   |  345 | 0159 | indeterminate 251 | CB_GETLOCALE                   |  346 | 015A | indeterminate 252 | CB_GETTOPINDEX                 |  347 | 015B | indeterminate 253 | CB_SETTOPINDEX                 |  348 | 015C | indeterminate 254 | CB_GETHORIZONTALEXTENT         |  349 | 015D | indeterminate 255 | CB_SETHORIZONTALEXTENT         |  350 | 015E | indeterminate 256 | CB_GETDROPPEDWIDTH             |  351 | 015F | indeterminate 257 | CB_SETDROPPEDWIDTH             |  352 | 0160 | indeterminate 258 | CB_INITSTORAGE                 |  353 | 0161 | indeterminate 259 | STM_SETICON                    |  368 | 0170 | indeterminate 260 | STM_GETICON                    |  369 | 0171 | indeterminate 261 | STM_SETIMAGE                   |  370 | 0172 | indeterminate 262 | STM_GETIMAGE                   |  371 | 0173 | indeterminate 263 | LB_ADDSTRING                   |  384 | 0180 | indeterminate 264 | LB_INSERTSTRING                |  385 | 0181 | indeterminate 265 | LB_DELETESTRING                |  386 | 0182 | indeterminate 266 | LB_SELITEMRANGEEX              |  387 | 0183 | indeterminate 267 | LB_RESETCONTENT                |  388 | 0184 | indeterminate 268 | LB_SETSEL                      |  389 | 0185 | indeterminate 269 | LB_SETCURSEL                   |  390 | 0186 | indeterminate 270 | LB_GETSEL                      |  391 | 0187 | indeterminate 271 | LB_GETCURSEL                   |  392 | 0188 | indeterminate 272 | LB_GETTEXT                     |  393 | 0189 | indeterminate 273 | LB_GETTEXTLEN                  |  394 | 018A | indeterminate 274 | LB_GETCOUNT                    |  395 | 018B | indeterminate 275 | LB_SELECTSTRING                |  396 | 018C | indeterminate 276 | LB_DIR                         |  397 | 018D | indeterminate 277 | LB_GETTOPINDEX                 |  398 | 018E | indeterminate 278 | LB_FINDSTRING                  |  399 | 018F | indeterminate 279 | LB_GETSELCOUNT                 |  400 | 0190 | indeterminate 280 | LB_GETSELITEMS                 |  401 | 0191 | indeterminate 281 | LB_SETTABSTOPS                 |  402 | 0192 | indeterminate 282 | LB_GETHORIZONTALEXTENT         |  403 | 0193 | indeterminate 283 | LB_SETHORIZONTALEXTENT         |  404 | 0194 | indeterminate 284 | LB_SETCOLUMNWIDTH              |  405 | 0195 | indeterminate 285 | LB_ADDFILE                     |  406 | 0196 | indeterminate 286 | LB_SETTOPINDEX                 |  407 | 0197 | indeterminate 287 | LB_GETITEMRECT                 |  408 | 0198 | indeterminate 288 | LB_GETITEMDATA                 |  409 | 0199 | indeterminate 289 | LB_SETITEMDATA                 |  410 | 019A | indeterminate 290 | LB_SELITEMRANGE                |  411 | 019B | indeterminate 291 | LB_SETANCHORINDEX              |  412 | 019C | indeterminate 292 | LB_GETANCHORINDEX              |  413 | 019D | indeterminate 293 | LB_SETCARETINDEX               |  414 | 019E | indeterminate 294 | LB_GETCARETINDEX               |  415 | 019F | indeterminate 295 | LB_SETITEMHEIGHT               |  416 | 01A0 | indeterminate 296 | LB_GETITEMHEIGHT               |  417 | 01A1 | indeterminate 297 | LB_FINDSTRINGEXACT             |  418 | 01A2 | indeterminate 298 | LBCB_CARETON                   |  419 | 01A3 | indeterminate 299 | LBCB_CARETOFF                  |  420 | 01A4 | indeterminate 300 | LB_SETLOCALE                   |  421 | 01A5 | indeterminate 301 | LB_GETLOCALE                   |  422 | 01A6 | indeterminate 302 | LB_SETCOUNT                    |  423 | 01A7 | indeterminate 303 | LB_INITSTORAGE                 |  424 | 01A8 | indeterminate 304 | LB_ITEMFROMPOINT               |  425 | 01A9 | indeterminate 305 | LB_INSERTSTRINGUPPER           |  426 | 01AA | indeterminate 306 | LB_INSERTSTRINGLOWER           |  427 | 01AB | indeterminate 307 | LB_ADDSTRINGUPPER              |  428 | 01AC | indeterminate 308 | LB_ADDSTRINGLOWER              |  429 | 01AD | indeterminate 309 | MN_SETHMENU                    |  480 | 01E0 | indeterminate 310 | MN_GETHMENU                    |  481 | 01E1 | indeterminate 311 | MN_SIZEWINDOW                  |  482 | 01E2 | indeterminate 312 | MN_OPENHIERARCHY               |  483 | 01E3 | indeterminate 313 | MN_CLOSEHIERARCHY              |  484 | 01E4 | indeterminate 314 | MN_SELECTITEM                  |  485 | 01E5 | indeterminate 315 | MN_CANCELMENUS                 |  486 | 01E6 | indeterminate 316 | MN_SELECTFIRSTVALIDITEM        |  487 | 01E7 | indeterminate 317 | MN_GETPPOPUPMENU               |  490 | 01EA | indeterminate 318 | MN_FINDMENUWINDOWFROMPOINT     |  491 | 01EB | indeterminate 319 | MN_SHOWPOPUPWINDOW             |  492 | 01EC | indeterminate 320 | MN_BUTTONDOWN                  |  493 | 01ED | indeterminate 321 | MN_MOUSEMOVE                   |  494 | 01EE | indeterminate 322 | MN_BUTTONUP                    |  495 | 01EF | indeterminate 323 | MN_SETTIMERTOOPENHIERARCHY     |  496 | 01F0 | indeterminate 324 | MN_DBLCLK                      |  497 | 01F1 | indeterminate 325 | WM_MOUSEMOVE                   |  512 | 0200 | 0 326 | WM_LBUTTONDOWN                 |  513 | 0201 | 0 327 | WM_LBUTTONUP                   |  514 | 0202 | 0 328 | WM_LBUTTONDBLCLK               |  515 | 0203 | 0 329 | WM_RBUTTONDOWN                 |  516 | 0204 | 0 330 | WM_RBUTTONUP                   |  517 | 0205 | 0 331 | WM_RBUTTONDBLCLK               |  518 | 0206 | 0 332 | WM_MBUTTONDOWN                 |  519 | 0207 | 0 333 | WM_MBUTTONUP                   |  520 | 0208 | 0 334 | WM_MBUTTONDBLCLK               |  521 | 0209 | 0 335 | WM_MOUSEWHEEL                  |  522 | 020A | 0 336 | WM_XBUTTONDOWN                 |  523 | 020B | non-zero 337 | WM_XBUTTONUP                   |  524 | 020C | non-zero 338 | WM_XBUTTONDBLCLK               |  525 | 020D | non-zero 339 | WM_PARENTNOTIFY                |  528 | 0210 | 0 340 | WM_ENTERMENULOOP               |  529 | 0211 | 0 341 | WM_EXITMENULOOP                |  530 | 0212 | 0 342 | WM_NEXTMENU                    |  531 | 0213 | indeterminate 343 | WM_SIZING                      |  532 | 0214 | non-zero 344 | WM_CAPTURECHANGED              |  533 | 0215 | 0 345 | WM_MOVING                      |  534 | 0216 | non-zero 346 | WM_POWERBROADCAST              |  536 | 0218 | variable 347 | WM_DEVICECHANGE                |  537 | 0219 | variable 348 | WM_MDICREATE                   |  544 | 0220 | indeterminate 349 | WM_MDIDESTROY                  |  545 | 0221 | always return 0 350 | WM_MDIACTIVATE                 |  546 | 0222 | variable 351 | WM_MDIRESTORE                  |  547 | 0223 | always return 0 352 | WM_MDINEXT                     |  548 | 0224 | always return 0 353 | WM_MDIMAXIMIZE                 |  549 | 0225 | always return 0 354 | WM_MDITILE                     |  550 | 0226 | variable 355 | WM_MDICASCADE                  |  551 | 0227 | variable 356 | WM_MDIICONARRANGE              |  552 | 0228 | indeterminate 357 | WM_MDIGETACTIVE                |  553 | 0229 | HWND 358 | WM_DROPOBJECT                  |  554 | 022A | unknown 359 | WM_QUERYDROPOBJECT             |  555 | 022B | unknown 360 | WM_BEGINDRAG                   |  556 | 022C | unknown 361 | WM_DRAGLOOP                    |  557 | 022D | unknown 362 | WM_DRAGSELECT                  |  558 | 022E | unknown 363 | WM_DRAGMOVE                    |  559 | 022F | unknown 364 | WM_MDISETMENU                  |  560 | 0230 | variable 365 | WM_ENTERSIZEMOVE               |  561 | 0231 | 0 366 | WM_EXITSIZEMOVE                |  562 | 0232 | 0 367 | WM_DROPFILES                   |  563 | 0233 | 0 368 | WM_MDIREFRESHMENU              |  564 | 0234 | variable 369 | WM_IME_SETCONTEXT              |  641 | 0281 | unknown 370 | WM_IME_NOTIFY                  |  642 | 0282 | unknown 371 | WM_IME_CONTROL                 |  643 | 0283 | unknown 372 | WM_IME_COMPOSITIONFULL         |  644 | 0284 | unknown 373 | WM_IME_SELECT                  |  645 | 0285 | unknown 374 | WM_IME_CHAR                    |  646 | 0286 | unknown 375 | WM_IME_REQUEST                 |  648 | 0288 | unknown 376 | WM_IME_KEYDOWN                 |  656 | 0290 | unknown 377 | WM_IME_KEYUP                   |  657 | 0291 | unknown 378 | WM_NCMOUSEHOVER                |  672 | 02A0 | 0 379 | WM_MOUSEHOVER                  |  673 | 02A1 | 0 380 | WM_NCMOUSELEAVE                |  674 | 02A2 | 0 381 | WM_MOUSELEAVE                  |  675 | 02A3 | 0 382 | WM_CUT                         |  768 | 0300 | indeterminate 383 | WM_COPY                        |  769 | 0301 | indeterminate 384 | WM_PASTE                       |  770 | 0302 | indeterminate 385 | WM_CLEAR                       |  771 | 0303 | indeterminate 386 | WM_UNDO                        |  772 | 0304 | indeterminate 387 | WM_RENDERFORMAT                |  773 | 0305 | 0 388 | WM_RENDERALLFORMATS            |  774 | 0306 | 0 389 | WM_DESTROYCLIPBOARD            |  775 | 0307 | 0 390 | WM_DRAWCLIPBOARD               |  776 | 0308 | indeterminate 391 | WM_PAINTCLIPBOARD              |  777 | 0309 | 0 392 | WM_VSCROLLCLIPBOARD            |  778 | 030A | 0 393 | WM_SIZECLIPBOARD               |  779 | 030B | 0 394 | WM_ASKCBFORMATNAME             |  780 | 030C | 0 395 | WM_CHANGECBCHAIN               |  781 | 030D | 0 396 | WM_HSCROLLCLIPBOARD            |  782 | 030E | 0 397 | WM_QUERYNEWPALETTE             |  783 | 030F | variable 398 | WM_PALETTEISCHANGING           |  784 | 0310 | 0  399 | WM_PALETTECHANGED              |  785 | 0311 | indeterminate 400 | WM_HOTKEY                      |  786 | 0312 | indeterminate 401 | WM_SYSMENU                     |  787 | 0313 | unknown 402 | WM_HOOKMSG                     |  788 | 0314 | unknown 403 | WM_EXITPROCESS                 |  789 | 0315 | unknown 404 | WM_WAKETHREAD                  |  790 | 0316 | unknown 405 | WM_PRINT                       |  791 | 0317 | indeterminate 406 | WM_PRINTCLIENT                 |  792 | 0318 | indeterminate 407 | WM_APPCOMMAND                  |  793 | 0319 | non-zero 408 | WM_PENWINFIRST                 |  896 | 0380 | unknown 409 | WM_PENWINLAST                  |  911 | 038F | unknown 410 | WM_DDE_INITIATE                |  992 | 03E0 | indeterminate 411 | WM_DDE_TERMINATE               |  993 | 03E1 | indeterminate 412 | WM_DDE_ADVISE                  |  994 | 03E2 | indeterminate 413 | WM_DDE_UNADVISE                |  995 | 03E3 | indeterminate 414 | WM_DDE_ACK                     |  996 | 03E4 | indeterminate 415 | WM_DDE_DATA                    |  997 | 03E5 | indeterminate 416 | WM_DDE_REQUEST                 |  998 | 03E6 | indeterminate 417 | WM_DDE_POKE                    |  999 | 03E7 | indeterminate 418 | WM_DDE_EXECUTE                 | 1000 | 03E8 | indeterminate 419 | TBM_GETPOS                     | 1024 | 0400 | indeterminate 420 | WM_USER                        | 1024 | 0400 | n/a 421 | DM_GETDEFID                    | 1024 | 0400 | indeterminate 422 | WM_PSD_PAGESETUPDLG            | 1024 | 0400 | indeterminate 423 | WM_CHOOSEFONT_GETLOGFONT       | 1025 | 0401 | indeterminate 424 | DM_SETDEFID                    | 1025 | 0401 | indeterminate 425 | HKM_SETHOTKEY                  | 1025 | 0401 | indeterminate 426 | WM_PSD_FULLPAGERECT            | 1025 | 0401 | indeterminate 427 | SB_SETTEXTA                    | 1025 | 0401 | indeterminate 428 | PBM_SETRANGE                   | 1025 | 0401 | indeterminate 429 | TTM_ACTIVATE                   | 1025 | 0401 | indeterminate 430 | TB_ENABLEBUTTON                | 1025 | 0401 | indeterminate 431 | RB_INSERTBANDA                 | 1025 | 0401 | indeterminate 432 | TBM_GETRANGEMIN                | 1025 | 0401 | indeterminate 433 | CBEM_INSERTITEMA               | 1025 | 0401 | indeterminate 434 | RB_INSERTBAND                  | 1025 | 0401 | indeterminate 435 | DM_REPOSITION                  | 1026 | 0402 | indeterminate 436 | TB_CHECKBUTTON                 | 1026 | 0402 | indeterminate 437 | SB_GETTEXTA                    | 1026 | 0402 | indeterminate 438 | TBM_GETRANGEMAX                | 1026 | 0402 | indeterminate 439 | CBEM_SETIMAGELIST              | 1026 | 0402 | indeterminate 440 | PBM_SETPOS                     | 1026 | 0402 | indeterminate 441 | WM_PSD_MINMARGINRECT           | 1026 | 0402 | indeterminate 442 | HKM_GETHOTKEY                  | 1026 | 0402 | indeterminate 443 | RB_DELETEBAND                  | 1026 | 0402 | indeterminate 444 | TTM_SETDELAYTIME               | 1027 | 0403 | indeterminate 445 | PBM_DELTAPOS                   | 1027 | 0403 | indeterminate 446 | CBEM_GETIMAGELIST              | 1027 | 0403 | indeterminate 447 | TBM_GETTIC                     | 1027 | 0403 | indeterminate 448 | RB_GETBARINFO                  | 1027 | 0403 | indeterminate 449 | HKM_SETRULES                   | 1027 | 0403 | indeterminate 450 | WM_PSD_MARGINRECT              | 1027 | 0403 | indeterminate 451 | SB_GETTEXTLENGTHA              | 1027 | 0403 | indeterminate 452 | TB_PRESSBUTTON                 | 1027 | 0403 | indeterminate 453 | PBM_SETSTEP                    | 1028 | 0404 | indeterminate 454 | SB_SETPARTS                    | 1028 | 0404 | indeterminate 455 | TTM_ADDTOOLA                   | 1028 | 0404 | indeterminate 456 | WM_PSD_GREEKTEXTRECT           | 1028 | 0404 | indeterminate 457 | TB_HIDEBUTTON                  | 1028 | 0404 | indeterminate 458 | CBEM_GETITEMA                  | 1028 | 0404 | indeterminate 459 | TBM_SETTIC                     | 1028 | 0404 | indeterminate 460 | RB_SETBARINFO                  | 1028 | 0404 | indeterminate 461 | TBM_SETPOS                     | 1029 | 0405 | indeterminate 462 | RB_GETBANDINFO                 | 1029 | 0405 | indeterminate 463 | TTM_DELTOOLA                   | 1029 | 0405 | indeterminate 464 | WM_PSD_ENVSTAMPRECT            | 1029 | 0405 | indeterminate 465 | TB_INDETERMINATE               | 1029 | 0405 | indeterminate 466 | CBEM_SETITEMA                  | 1029 | 0405 | indeterminate 467 | PBM_STEPIT                     | 1029 | 0405 | indeterminate 468 | TB_MARKBUTTON                  | 1030 | 0406 | indeterminate 469 | PBM_SETRANGE32                 | 1030 | 0406 | indeterminate 470 | WM_PSD_YAFULLPAGERECT          | 1030 | 0406 | indeterminate 471 | RB_SETBANDINFO                 | 1030 | 0406 | indeterminate 472 | TBM_SETRANGE                   | 1030 | 0406 | indeterminate 473 | CBEM_GETCOMBOCONTROL           | 1030 | 0406 | indeterminate 474 | SB_GETPARTS                    | 1030 | 0406 | indeterminate 475 | RB_SETBANDINFOA                | 1030 | 0406 | indeterminate 476 | TTM_NEWTOOLRECTA               | 1030 | 0406 | indeterminate 477 | RB_SETPARENT                   | 1031 | 0407 | indeterminate 478 | TBM_SETRANGEMIN                | 1031 | 0407 | indeterminate 479 | TTM_RELAYEVENT                 | 1031 | 0407 | indeterminate 480 | CBEM_GETEDITCONTROL            | 1031 | 0407 | indeterminate 481 | PBM_GETRANGE                   | 1031 | 0407 | indeterminate 482 | SB_GETBORDERS                  | 1031 | 0407 | indeterminate 483 | TBM_SETRANGEMAX                | 1032 | 0408 | indeterminate 484 | PBM_GETPOS                     | 1032 | 0408 | indeterminate 485 | RB_HITTEST                     | 1032 | 0408 | indeterminate 486 | TTM_GETTOOLINFOA               | 1032 | 0408 | indeterminate 487 | CBEM_SETEXSTYLE                | 1032 | 0408 | indeterminate 488 | SB_SETMINHEIGHT                | 1032 | 0408 | indeterminate 489 | CBEM_GETEXSTYLE                | 1033 | 0409 | indeterminate 490 | CBEM_GETEXTENDEDSTYLE          | 1033 | 0409 | indeterminate 491 | TB_ISBUTTONENABLED             | 1033 | 0409 | indeterminate 492 | PBM_SETBARCOLOR                | 1033 | 0409 | indeterminate 493 | RB_GETRECT                     | 1033 | 0409 | indeterminate 494 | TTM_SETTOOLINFOA               | 1033 | 0409 | indeterminate 495 | TBM_CLEARTICS                  | 1033 | 0409 | indeterminate 496 | SB_SIMPLE                      | 1033 | 0409 | indeterminate 497 | CBEM_HASEDITCHANGED            | 1034 | 040A | indeterminate 498 | TTM_HITTESTA                   | 1034 | 040A | indeterminate 499 | RB_INSERTBANDW                 | 1034 | 040A | indeterminate 500 | SB_GETRECT                     | 1034 | 040A | indeterminate 501 | TBM_SETSEL                     | 1034 | 040A | indeterminate 502 | TB_ISBUTTONCHECKED             | 1034 | 040A | indeterminate 503 | SB_SETTEXTW                    | 1035 | 040B | indeterminate 504 | TTM_GETTEXTA                   | 1035 | 040B | indeterminate 505 | RB_SETBANDINFOW                | 1035 | 040B | indeterminate 506 | TB_ISBUTTONPRESSED             | 1035 | 040B | indeterminate 507 | TBM_SETSELSTART                | 1035 | 040B | indeterminate 508 | CBEM_INSERTITEMW               | 1035 | 040B | indeterminate 509 | TB_ISBUTTONHIDDEN              | 1036 | 040C | indeterminate 510 | RB_GETBANDCOUNT                | 1036 | 040C | indeterminate 511 | SB_GETTEXTLENGTHW              | 1036 | 040C | indeterminate 512 | TBM_SETSELEND                  | 1036 | 040C | indeterminate 513 | TTM_UPDATETIPTEXTA             | 1036 | 040C | indeterminate 514 | CBEM_SETITEMW                  | 1036 | 040C | indeterminate 515 | SB_GETTEXTW                    | 1037 | 040D | indeterminate 516 | CBEM_GETITEMW                  | 1037 | 040D | indeterminate 517 | TB_ISBUTTONINDETERMINATE       | 1037 | 040D | indeterminate 518 | RB_GETROWCOUNT                 | 1037 | 040D | indeterminate 519 | TTM_GETTOOLCOUNT               | 1037 | 040D | indeterminate 520 | TB_ISBUTTONHIGHLIGHTED         | 1038 | 040E | indeterminate 521 | CBEM_SETEXTENDEDSTYLE          | 1038 | 040E | indeterminate 522 | TTM_ENUMTOOLSA                 | 1038 | 040E | indeterminate 523 | TBM_GETPTICS                   | 1038 | 040E | indeterminate 524 | SB_ISSIMPLE                    | 1038 | 040E | indeterminate 525 | RB_GETROWHEIGHT                | 1038 | 040E | indeterminate 526 | TBM_GETTICPOS                  | 1039 | 040F | indeterminate 527 | TTM_GETCURRENTTOOLA            | 1039 | 040F | indeterminate 528 | SB_SETICON                     | 1039 | 040F | indeterminate 529 | RB_IDTOINDEX                   | 1040 | 0410 | indeterminate 530 | SB_SETTIPTEXTA                 | 1040 | 0410 | indeterminate 531 | TBM_GETNUMTICS                 | 1040 | 0410 | indeterminate 532 | TTM_WINDOWFROMPOINT            | 1040 | 0410 | indeterminate 533 | TB_SETSTATE                    | 1041 | 0411 | indeterminate 534 | SB_SETTIPTEXTW                 | 1041 | 0411 | indeterminate 535 | RB_GETTOOLTIPS                 | 1041 | 0411 | indeterminate 536 | TBM_GETSELSTART                | 1041 | 0411 | indeterminate 537 | TTM_TRACKACTIVATE              | 1041 | 0411 | indeterminate 538 | RB_SETTOOLTIPS                 | 1042 | 0412 | indeterminate 539 | SB_GETTIPTEXTA                 | 1042 | 0412 | indeterminate 540 | TB_GETSTATE                    | 1042 | 0412 | indeterminate 541 | TTM_TRACKPOSITION              | 1042 | 0412 | indeterminate 542 | TBM_GETSELEND                  | 1042 | 0412 | indeterminate 543 | TTM_SETTIPBKCOLOR              | 1043 | 0413 | indeterminate 544 | TBM_CLEARSEL                   | 1043 | 0413 | indeterminate 545 | TB_ADDBITMAP                   | 1043 | 0413 | indeterminate 546 | RB_SETBKCOLOR                  | 1043 | 0413 | indeterminate 547 | SB_GETTIPTEXTW                 | 1043 | 0413 | indeterminate 548 | SB_GETICON                     | 1044 | 0414 | indeterminate 549 | RB_GETBKCOLOR                  | 1044 | 0414 | indeterminate 550 | TTM_SETTIPTEXTCOLOR            | 1044 | 0414 | indeterminate 551 | TBM_SETTICFREQ                 | 1044 | 0414 | indeterminate 552 | TB_ADDBUTTONS                  | 1044 | 0414 | indeterminate 553 | TBM_SETPAGESIZE                | 1045 | 0415 | indeterminate 554 | TTM_GETDELAYTIME               | 1045 | 0415 | indeterminate 555 | TB_INSERTBUTTON                | 1045 | 0415 | indeterminate 556 | RB_SETTEXTCOLOR                | 1045 | 0415 | indeterminate 557 | TB_DELETEBUTTON                | 1046 | 0416 | indeterminate 558 | TTM_GETTIPBKCOLOR              | 1046 | 0416 | indeterminate 559 | RB_GETTEXTCOLOR                | 1046 | 0416 | indeterminate 560 | TBM_GETPAGESIZE                | 1046 | 0416 | indeterminate 561 | RB_SIZETORECT                  | 1047 | 0417 | indeterminate 562 | TTM_GETTIPTEXTCOLOR            | 1047 | 0417 | indeterminate 563 | TB_GETBUTTON                   | 1047 | 0417 | indeterminate 564 | TBM_SETLINESIZE                | 1047 | 0417 | indeterminate 565 | TTM_SETMAXTIPWIDTH             | 1048 | 0418 | indeterminate 566 | TBM_GETLINESIZE                | 1048 | 0418 | indeterminate 567 | RB_BEGINDRAG                   | 1048 | 0418 | indeterminate 568 | TB_BUTTONCOUNT                 | 1048 | 0418 | indeterminate 569 | RB_ENDDRAG                     | 1049 | 0419 | indeterminate 570 | TB_COMMANDTOINDEX              | 1049 | 0419 | indeterminate 571 | TBM_GETTHUMBRECT               | 1049 | 0419 | indeterminate 572 | TTM_GETMAXTIPWIDTH             | 1049 | 0419 | indeterminate 573 | TB_SAVERESTORE                 | 1050 | 041A | indeterminate 574 | TTM_SETMARGIN                  | 1050 | 041A | indeterminate 575 | TBM_GETCHANNELRECT             | 1050 | 041A | indeterminate 576 | RB_DRAGMOVE                    | 1050 | 041A | indeterminate 577 | TTM_GETMARGIN                  | 1051 | 041B | indeterminate 578 | RB_GETBARHEIGHT                | 1051 | 041B | indeterminate 579 | TB_CUSTOMIZE                   | 1051 | 041B | indeterminate 580 | TBM_SETTHUMBLENGTH             | 1051 | 041B | indeterminate 581 | RB_GETBANDINFOW                | 1052 | 041C | indeterminate 582 | TBM_GETTHUMBLENGTH             | 1052 | 041C | indeterminate 583 | TB_ADDSTRING                   | 1052 | 041C | indeterminate 584 | TTM_POP                        | 1052 | 041C | indeterminate 585 | TBM_SETTOOLTIPS                | 1053 | 041D | indeterminate 586 | RB_GETBANDINFOA                | 1053 | 041D | indeterminate 587 | TTM_UPDATE                     | 1053 | 041D | indeterminate 588 | TB_GETITEMRECT                 | 1053 | 041D | indeterminate 589 | TBM_GETTOOLTIPS                | 1054 | 041E | indeterminate 590 | RB_MINIMIZEBAND                | 1054 | 041E | indeterminate 591 | TTM_GETBUBBLESIZE              | 1054 | 041E | indeterminate 592 | TB_BUTTONSTRUCTSIZE            | 1054 | 041E | indeterminate 593 | RB_MAXIMIZEBAND                | 1055 | 041F | indeterminate 594 | TTM_ADJUSTRECT                 | 1055 | 041F | indeterminate 595 | TB_SETBUTTONSIZE               | 1055 | 041F | indeterminate 596 | TBM_SETTIPSIDE                 | 1055 | 041F | indeterminate 597 | TB_SETBITMAPSIZE               | 1056 | 0420 | indeterminate 598 | TTM_SETTITLEA                  | 1056 | 0420 | indeterminate 599 | TBM_SETBUDDY                   | 1056 | 0420 | indeterminate 600 | TB_AUTOSIZE                    | 1057 | 0421 | indeterminate 601 | TTM_SETTITLEW                  | 1057 | 0421 | indeterminate 602 | TBM_GETBUDDY                   | 1057 | 0421 | indeterminate 603 | RB_GETBANDBORDERS              | 1058 | 0422 | indeterminate 604 | TB_GETTOOLTIPS                 | 1059 | 0423 | indeterminate 605 | RB_SHOWBAND                    | 1059 | 0423 | indeterminate 606 | TB_SETTOOLTIPS                 | 1060 | 0424 | indeterminate 607 | RB_SETPALETTE                  | 1061 | 0425 | indeterminate 608 | TB_SETPARENT                   | 1061 | 0425 | indeterminate 609 | RB_GETPALETTE                  | 1062 | 0426 | indeterminate 610 | RB_MOVEBAND                    | 1063 | 0427 | indeterminate 611 | TB_SETROWS                     | 1063 | 0427 | indeterminate 612 | TB_GETROWS                     | 1064 | 0428 | indeterminate 613 | TB_GETBITMAPFLAGS              | 1065 | 0429 | indeterminate 614 | TB_SETCMDID                    | 1066 | 042A | indeterminate 615 | RB_PUSHCHEVRON                 | 1067 | 042B | indeterminate 616 | TB_CHANGEBITMAP                | 1067 | 042B | indeterminate 617 | TB_GETBITMAP                   | 1068 | 042C | indeterminate 618 | TB_GETBUTTONTEXT               | 1069 | 042D | indeterminate 619 | TB_REPLACEBITMAP               | 1070 | 042E | indeterminate 620 | TB_SETINDENT                   | 1071 | 042F | indeterminate 621 | TB_SETIMAGELIST                | 1072 | 0430 | indeterminate 622 | TB_GETIMAGELIST                | 1073 | 0431 | indeterminate 623 | TTM_ADDTOOLW                   | 1074 | 0432 | indeterminate 624 | TB_LOADIMAGES                  | 1074 | 0432 | indeterminate 625 | EM_CANPASTE                    | 1074 | 0432 | indeterminate 626 | EM_DISPLAYBAND                 | 1075 | 0433 | indeterminate 627 | TTM_DELTOOLW                   | 1075 | 0433 | indeterminate 628 | TB_GETRECT                     | 1075 | 0433 | indeterminate 629 | TTM_NEWTOOLRECTW               | 1076 | 0434 | indeterminate 630 | EM_EXGETSEL                    | 1076 | 0434 | indeterminate 631 | TB_SETHOTIMAGELIST             | 1076 | 0434 | indeterminate 632 | TTM_GETTOOLINFOW               | 1077 | 0435 | indeterminate 633 | EM_EXLIMITTEXT                 | 1077 | 0435 | indeterminate 634 | TB_GETHOTIMAGELIST             | 1077 | 0435 | indeterminate 635 | TB_SETDISABLEDIMAGELIST        | 1078 | 0436 | indeterminate 636 | EM_EXLINEFROMCHAR              | 1078 | 0436 | indeterminate 637 | TTM_SETTOOLINFOW               | 1078 | 0436 | indeterminate 638 | TB_GETDISABLEDIMAGELIST        | 1079 | 0437 | indeterminate 639 | TTM_HITTESTW                   | 1079 | 0437 | indeterminate 640 | EM_EXSETSEL                    | 1079 | 0437 | indeterminate 641 | TB_SETSTYLE                    | 1080 | 0438 | indeterminate 642 | TTM_GETTEXTW                   | 1080 | 0438 | indeterminate 643 | EM_FINDTEXT                    | 1080 | 0438 | indeterminate 644 | EM_FORMATRANGE                 | 1081 | 0439 | indeterminate 645 | TTM_UPDATETIPTEXTW             | 1081 | 0439 | indeterminate 646 | TB_GETSTYLE                    | 1081 | 0439 | indeterminate 647 | EM_GETCHARFORMAT               | 1082 | 043A | indeterminate 648 | TB_GETBUTTONSIZE               | 1082 | 043A | indeterminate 649 | TTM_ENUMTOOLSW                 | 1082 | 043A | indeterminate 650 | EM_GETEVENTMASK                | 1083 | 043B | indeterminate 651 | TB_SETBUTTONWIDTH              | 1083 | 043B | indeterminate 652 | TTM_GETCURRENTTOOLW            | 1083 | 043B | indeterminate 653 | EM_GETOLEINTERFACE             | 1084 | 043C | indeterminate 654 | TB_SETMAXTEXTROWS              | 1084 | 043C | indeterminate 655 | TB_GETTEXTROWS                 | 1085 | 043D | indeterminate 656 | EM_GETPARAFORMAT               | 1085 | 043D | indeterminate 657 | TB_GETOBJECT                   | 1086 | 043E | indeterminate 658 | EM_GETSELTEXT                  | 1086 | 043E | indeterminate 659 | EM_HIDESELECTION               | 1087 | 043F | indeterminate 660 | TB_GETBUTTONINFOW              | 1087 | 043F | indeterminate 661 | EM_PASTESPECIAL                | 1088 | 0440 | indeterminate 662 | TB_SETBUTTONINFOW              | 1088 | 0440 | indeterminate 663 | EM_REQUESTRESIZE               | 1089 | 0441 | indeterminate 664 | TB_GETBUTTONINFOA              | 1089 | 0441 | indeterminate 665 | TB_SETBUTTONINFOA              | 1090 | 0442 | indeterminate 666 | EM_SELECTIONTYPE               | 1090 | 0442 | indeterminate 667 | EM_SETBKGNDCOLOR               | 1091 | 0443 | indeterminate 668 | EM_SETCHARFORMAT               | 1092 | 0444 | indeterminate 669 | TB_HITTEST                     | 1093 | 0445 | indeterminate 670 | EM_SETEVENTMASK                | 1093 | 0445 | indeterminate 671 | EM_SETOLECALLBACK              | 1094 | 0446 | indeterminate 672 | TB_SETDRAWTEXTFLAGS            | 1094 | 0446 | indeterminate 673 | TB_GETHOTITEM                  | 1095 | 0447 | indeterminate 674 | EM_SETPARAFORMAT               | 1095 | 0447 | indeterminate 675 | EM_SETTARGETDEVICE             | 1096 | 0448 | indeterminate 676 | TB_SETHOTITEM                  | 1096 | 0448 | indeterminate 677 | TB_SETANCHORHIGHLIGHT          | 1097 | 0449 | indeterminate 678 | EM_STREAMIN                    | 1097 | 0449 | indeterminate 679 | EM_STREAMOUT                   | 1098 | 044A | indeterminate 680 | TB_GETANCHORHIGHLIGHT          | 1098 | 044A | indeterminate 681 | EM_GETTEXTRANGE                | 1099 | 044B | indeterminate 682 | EM_FINDWORDBREAK               | 1100 | 044C | indeterminate 683 | EM_SETOPTIONS                  | 1101 | 044D | indeterminate 684 | EM_GETOPTIONS                  | 1102 | 044E | indeterminate 685 | TB_MAPACCELERATORA             | 1102 | 044E | indeterminate 686 | EM_FINDTEXTEX                  | 1103 | 044F | indeterminate 687 | TB_GETINSERTMARK               | 1103 | 044F | indeterminate 688 | TB_SETINSERTMARK               | 1104 | 0450 | indeterminate 689 | EM_GETWORDBREAKPROCEX          | 1104 | 0450 | indeterminate 690 | TB_INSERTMARKHITTEST           | 1105 | 0451 | indeterminate 691 | EM_SETWORDBREAKPROCEX          | 1105 | 0451 | indeterminate 692 | TB_MOVEBUTTON                  | 1106 | 0452 | indeterminate 693 | EM_SETUNDOLIMIT                | 1106 | 0452 | indeterminate 694 | TB_GETMAXSIZE                  | 1107 | 0453 | indeterminate 695 | EM_REDO                        | 1108 | 0454 | indeterminate 696 | TB_SETEXTENDEDSTYLE            | 1108 | 0454 | indeterminate 697 | TB_GETEXTENDEDSTYLE            | 1109 | 0455 | indeterminate 698 | EM_CANREDO                     | 1109 | 0455 | indeterminate 699 | TB_GETPADDING                  | 1110 | 0456 | indeterminate 700 | EM_GETUNDONAME                 | 1110 | 0456 | indeterminate 701 | TB_SETPADDING                  | 1111 | 0457 | indeterminate 702 | EM_GETREDONAME                 | 1111 | 0457 | indeterminate 703 | TB_SETINSERTMARKCOLOR          | 1112 | 0458 | indeterminate 704 | EM_STOPGROUPTYPING             | 1112 | 0458 | indeterminate 705 | TB_GETINSERTMARKCOLOR          | 1113 | 0459 | indeterminate 706 | EM_SETTEXTMODE                 | 1113 | 0459 | indeterminate 707 | TB_MAPACCELERATORW             | 1114 | 045A | indeterminate 708 | EM_GETTEXTMODE                 | 1114 | 045A | indeterminate 709 | EM_AUTOURLDETECT               | 1115 | 045B | indeterminate 710 | TB_GETSTRING                   | 1116 | 045C | indeterminate 711 | EM_GETAUTOURLDETECT            | 1116 | 045C | indeterminate 712 | EM_SETPALETTE                  | 1117 | 045D | indeterminate 713 | EM_GETTEXTEX                   | 1118 | 045E | indeterminate 714 | EM_GETTEXTLENGTHEX             | 1119 | 045F | indeterminate 715 | EM_SHOWSCROLLBAR               | 1120 | 0460 | indeterminate 716 | EM_SETTEXTEX                   | 1121 | 0461 | indeterminate 717 | EM_SETPUNCTUATION              | 1124 | 0464 | indeterminate 718 | IPM_CLEARADDRESS               | 1124 | 0464 | indeterminate 719 | CDM_GETSPEC                    | 1124 | 0464 | indeterminate 720 | ACM_OPEN                       | 1124 | 0464 | indeterminate 721 | WM_CHOOSEFONT_SETLOGFONT       | 1125 | 0465 | indeterminate 722 | CDM_GETFILEPATH                | 1125 | 0465 | indeterminate 723 | PSM_SETCURSEL                  | 1125 | 0465 | indeterminate 724 | UDM_SETRANGE                   | 1125 | 0465 | indeterminate 725 | ACM_PLAY                       | 1125 | 0465 | indeterminate 726 | EM_GETPUNCTUATION              | 1125 | 0465 | indeterminate 727 | IPM_SETADDRESS                 | 1125 | 0465 | indeterminate 728 | PSM_REMOVEPAGE                 | 1126 | 0466 | indeterminate 729 | EM_SETWORDWRAPMODE             | 1126 | 0466 | indeterminate 730 | ACM_STOP                       | 1126 | 0466 | indeterminate 731 | UDM_GETRANGE                   | 1126 | 0466 | indeterminate 732 | CDM_GETFOLDERPATH              | 1126 | 0466 | indeterminate 733 | WM_CHOOSEFONT_SETFLAGS         | 1126 | 0466 | indeterminate 734 | IPM_GETADDRESS                 | 1126 | 0466 | indeterminate 735 | EM_GETWORDWRAPMODE             | 1127 | 0467 | indeterminate 736 | CDM_GETFOLDERIDLIST            | 1127 | 0467 | indeterminate 737 | IPM_SETRANGE                   | 1127 | 0467 | indeterminate 738 | PSM_ADDPAGE                    | 1127 | 0467 | indeterminate 739 | UDM_SETPOS                     | 1127 | 0467 | indeterminate 740 | CDM_SETCONTROLTEXT             | 1128 | 0468 | indeterminate 741 | PSM_CHANGED                    | 1128 | 0468 | indeterminate 742 | UDM_GETPOS                     | 1128 | 0468 | indeterminate 743 | IPM_SETFOCUS                   | 1128 | 0468 | indeterminate 744 | EM_SETIMECOLOR                 | 1128 | 0468 | indeterminate 745 | UDM_SETBUDDY                   | 1129 | 0469 | indeterminate 746 | IPM_ISBLANK                    | 1129 | 0469 | indeterminate 747 | PSM_RESTARTWINDOWS             | 1129 | 0469 | indeterminate 748 | CDM_HIDECONTROL                | 1129 | 0469 | indeterminate 749 | EM_GETIMECOLOR                 | 1129 | 0469 | indeterminate 750 | CDM_SETDEFEXT                  | 1130 | 046A | indeterminate 751 | PSM_REBOOTSYSTEM               | 1130 | 046A | indeterminate 752 | EM_SETIMEOPTIONS               | 1130 | 046A | indeterminate 753 | UDM_GETBUDDY                   | 1130 | 046A | indeterminate 754 | UDM_SETACCEL                   | 1131 | 046B | indeterminate 755 | EM_GETIMEOPTIONS               | 1131 | 046B | indeterminate 756 | PSM_CANCELTOCLOSE              | 1131 | 046B | indeterminate 757 | PSM_QUERYSIBLINGS              | 1132 | 046C | indeterminate 758 | UDM_GETACCEL                   | 1132 | 046C | indeterminate 759 | PSM_UNCHANGED                  | 1133 | 046D | indeterminate 760 | UDM_SETBASE                    | 1133 | 046D | indeterminate 761 | PSM_APPLY                      | 1134 | 046E | indeterminate 762 | UDM_GETBASE                    | 1134 | 046E | indeterminate 763 | PSM_SETTITLE                   | 1135 | 046F | indeterminate 764 | UDM_SETRANGE32                 | 1135 | 046F | indeterminate 765 | PSM_SETWIZBUTTONS              | 1136 | 0470 | indeterminate 766 | UDM_GETRANGE32                 | 1136 | 0470 | indeterminate 767 | UDM_SETPOS32                   | 1137 | 0471 | indeterminate 768 | PSM_PRESSBUTTON                | 1137 | 0471 | indeterminate 769 | UDM_GETPOS32                   | 1138 | 0472 | indeterminate 770 | PSM_SETCURSELID                | 1138 | 0472 | indeterminate 771 | PSM_SETFINISHTEXT              | 1139 | 0473 | indeterminate 772 | PSM_GETTABCONTROL              | 1140 | 0474 | indeterminate 773 | PSM_ISDIALOGMESSAGE            | 1141 | 0475 | indeterminate 774 | PSM_GETCURRENTPAGEHWND         | 1142 | 0476 | indeterminate 775 | PSM_INSERTPAGE                 | 1143 | 0477 | indeterminate 776 | EM_SETLANGOPTIONS              | 1144 | 0478 | indeterminate 777 | EM_GETLANGOPTIONS              | 1145 | 0479 | indeterminate 778 | EM_GETIMECOMPMODE              | 1146 | 047A | indeterminate 779 | EM_FINDTEXTW                   | 1147 | 047B | indeterminate 780 | EM_FINDTEXTEXW                 | 1148 | 047C | indeterminate 781 | PSM_SETHEADERTITLEA            | 1149 | 047D | indeterminate 782 | EM_RECONVERSION                | 1149 | 047D | indeterminate 783 | PSM_SETHEADERTITLEW            | 1150 | 047E | indeterminate 784 | PSM_SETHEADERSUBTITLEA         | 1151 | 047F | indeterminate 785 | PSM_SETHEADERSUBTITLEW         | 1152 | 0480 | indeterminate 786 | PSM_HWNDTOINDEX                | 1153 | 0481 | indeterminate 787 | PSM_INDEXTOHWND                | 1154 | 0482 | indeterminate 788 | PSM_PAGETOINDEX                | 1155 | 0483 | indeterminate 789 | PSM_INDEXTOPAGE                | 1156 | 0484 | indeterminate 790 | DL_BEGINDRAG                   | 1157 | 0485 | indeterminate 791 | PSM_IDTOINDEX                  | 1157 | 0485 | indeterminate 792 | DL_DRAGGING                    | 1158 | 0486 | indeterminate 793 | PSM_INDEXTOID                  | 1158 | 0486 | indeterminate 794 | PSM_GETRESULT                  | 1159 | 0487 | indeterminate 795 | DL_DROPPED                     | 1159 | 0487 | indeterminate 796 | DL_CANCELDRAG                  | 1160 | 0488 | indeterminate 797 | PSM_RECALCPAGESIZES            | 1160 | 0488 | indeterminate 798 | EM_SETBIDIOPTIONS              | 1224 | 04C8 | indeterminate 799 | EM_GETBIDIOPTIONS              | 1225 | 04C9 | indeterminate 800 | EM_SETTYPOGRAPHYOPTIONS        | 1226 | 04CA | indeterminate 801 | EM_GETTYPOGRAPHYOPTIONS        | 1227 | 04CB | indeterminate 802 | EM_SETEDITSTYLE                | 1228 | 04CC | indeterminate 803 | EM_GETEDITSTYLE                | 1229 | 04CD | indeterminate 804 | EM_GETSCROLLPOS                | 1245 | 04DD | indeterminate 805 | EM_SETSCROLLPOS                | 1246 | 04DE | indeterminate 806 | EM_SETFONTSIZE                 | 1247 | 04DF | indeterminate 807 | EM_GETZOOM                     | 1248 | 04E0 | indeterminate 808 | EM_SETZOOM                     | 1249 | 04E1 | indeterminate 809 | LVM_GETBKCOLOR                 | 4096 | 1000 | indeterminate 810 | MCM_GETCURSEL                  | 4097 | 1001 | indeterminate 811 | DTM_GETSYSTEMTIME              | 4097 | 1001 | indeterminate 812 | LVM_SETBKCOLOR                 | 4097 | 1001 | indeterminate 813 | MCM_SETCURSEL                  | 4098 | 1002 | indeterminate 814 | LVM_GETIMAGELIST               | 4098 | 1002 | indeterminate 815 | DTM_SETSYSTEMTIME              | 4098 | 1002 | indeterminate 816 | LVM_SETIMAGELIST               | 4099 | 1003 | indeterminate 817 | DTM_GETRANGE                   | 4099 | 1003 | indeterminate 818 | MCM_GETMAXSELCOUNT             | 4099 | 1003 | indeterminate 819 | DTM_SETRANGE                   | 4100 | 1004 | indeterminate 820 | MCM_SETMAXSELCOUNT             | 4100 | 1004 | indeterminate 821 | LVM_GETITEMCOUNT               | 4100 | 1004 | indeterminate 822 | DTM_SETFORMATA                 | 4101 | 1005 | indeterminate 823 | LVM_GETITEM                    | 4101 | 1005 | indeterminate 824 | MCM_GETSELRANGE                | 4101 | 1005 | indeterminate 825 | MCM_SETSELRANGE                | 4102 | 1006 | indeterminate 826 | DTM_SETMCCOLOR                 | 4102 | 1006 | indeterminate 827 | LVM_SETITEM                    | 4102 | 1006 | indeterminate 828 | MCM_GETMONTHRANGE              | 4103 | 1007 | indeterminate 829 | DTM_GETMCCOLOR                 | 4103 | 1007 | indeterminate 830 | LVM_INSERTITEM                 | 4103 | 1007 | indeterminate 831 | MCM_SETDAYSTATE                | 4104 | 1008 | indeterminate 832 | DTM_GETMONTHCAL                | 4104 | 1008 | indeterminate 833 | LVM_DELETEITEM                 | 4104 | 1008 | indeterminate 834 | MCM_GETMINREQRECT              | 4105 | 1009 | indeterminate 835 | DTM_SETMCFONT                  | 4105 | 1009 | indeterminate 836 | LVM_DELETEALLITEMS             | 4105 | 1009 | indeterminate 837 | DTM_GETMCFONT                  | 4106 | 100A | indeterminate 838 | MCM_SETCOLOR                   | 4106 | 100A | indeterminate 839 | LVM_GETCALLBACKMASK            | 4106 | 100A | indeterminate 840 | MCM_GETCOLOR                   | 4107 | 100B | indeterminate 841 | LVM_SETCALLBACKMASK            | 4107 | 100B | indeterminate 842 | MCM_SETTODAY                   | 4108 | 100C | indeterminate 843 | LVM_GETNEXTITEM                | 4108 | 100C | indeterminate 844 | MCM_GETTODAY                   | 4109 | 100D | indeterminate 845 | LVM_FINDITEM                   | 4109 | 100D | indeterminate 846 | MCM_HITTEST                    | 4110 | 100E | indeterminate 847 | LVM_GETITEMRECT                | 4110 | 100E | indeterminate 848 | LVM_SETITEMPOSITION            | 4111 | 100F | indeterminate 849 | MCM_SETFIRSTDAYOFWEEK          | 4111 | 100F | indeterminate 850 | LVM_GETITEMPOSITION            | 4112 | 1010 | indeterminate 851 | MCM_GETFIRSTDAYOFWEEK          | 4112 | 1010 | indeterminate 852 | LVM_GETSTRINGWIDTH             | 4113 | 1011 | indeterminate 853 | MCM_GETRANGE                   | 4113 | 1011 | indeterminate 854 | MCM_SETRANGE                   | 4114 | 1012 | indeterminate 855 | LVM_HITTEST                    | 4114 | 1012 | indeterminate 856 | LVM_ENSUREVISIBLE              | 4115 | 1013 | indeterminate 857 | MCM_GETMONTHDELTA              | 4115 | 1013 | indeterminate 858 | MCM_SETMONTHDELTA              | 4116 | 1014 | indeterminate 859 | LVM_SCROLL                     | 4116 | 1014 | indeterminate 860 | MCM_GETMAXTODAYWIDTH           | 4117 | 1015 | indeterminate 861 | LVM_REDRAWITEMS                | 4117 | 1015 | indeterminate 862 | LVM_ARRANGE                    | 4118 | 1016 | indeterminate 863 | LVM_EDITLABEL                  | 4119 | 1017 | indeterminate 864 | LVM_GETEDITCONTROL             | 4120 | 1018 | indeterminate 865 | LVM_GETCOLUMN                  | 4121 | 1019 | indeterminate 866 | LVM_SETCOLUMN                  | 4122 | 101A | indeterminate 867 | LVM_INSERTCOLUMN               | 4123 | 101B | indeterminate 868 | LVM_DELETECOLUMN               | 4124 | 101C | indeterminate 869 | LVM_GETCOLUMNWIDTH             | 4125 | 101D | indeterminate 870 | LVM_SETCOLUMNWIDTH             | 4126 | 101E | indeterminate 871 | LVM_GETHEADER                  | 4127 | 101F | indeterminate 872 | LVM_CREATEDRAGIMAGE            | 4129 | 1021 | indeterminate 873 | LVM_GETVIEWRECT                | 4130 | 1022 | indeterminate 874 | LVM_GETTEXTCOLOR               | 4131 | 1023 | indeterminate 875 | LVM_SETTEXTCOLOR               | 4132 | 1024 | indeterminate 876 | LVM_GETTEXTBKCOLOR             | 4133 | 1025 | indeterminate 877 | LVM_SETTEXTBKCOLOR             | 4134 | 1026 | indeterminate 878 | LVM_GETTOPINDEX                | 4135 | 1027 | indeterminate 879 | LVM_GETCOUNTPERPAGE            | 4136 | 1028 | indeterminate 880 | LVM_GETORIGIN                  | 4137 | 1029 | indeterminate 881 | LVM_UPDATE                     | 4138 | 102A | indeterminate 882 | LVM_SETITEMSTATE               | 4139 | 102B | indeterminate 883 | LVM_GETITEMSTATE               | 4140 | 102C | indeterminate 884 | LVM_GETITEMTEXT                | 4141 | 102D | indeterminate 885 | LVM_SETITEMTEXT                | 4142 | 102E | indeterminate 886 | LVM_SETITEMCOUNT               | 4143 | 102F | indeterminate 887 | LVM_SORTITEMS                  | 4144 | 1030 | indeterminate 888 | LVM_SETITEMPOSITION32          | 4145 | 1031 | indeterminate 889 | LVM_GETSELECTEDCOUNT           | 4146 | 1032 | indeterminate 890 | DTM_SETFORMATW                 | 4146 | 1032 | indeterminate 891 | LVM_GETITEMSPACING             | 4147 | 1033 | indeterminate 892 | LVM_GETISEARCHSTRING           | 4148 | 1034 | indeterminate 893 | LVM_SETICONSPACING             | 4149 | 1035 | indeterminate 894 | LVM_SETEXTENDEDLISTVIEWSTYLE   | 4150 | 1036 | indeterminate 895 | LVM_GETEXTENDEDLISTVIEWSTYLE   | 4151 | 1037 | indeterminate 896 | LVM_GETSUBITEMRECT             | 4152 | 1038 | indeterminate 897 | LVM_SUBITEMHITTEST             | 4153 | 1039 | indeterminate 898 | LVM_SETCOLUMNORDERARRAY        | 4154 | 103A | indeterminate 899 | LVM_GETCOLUMNORDERARRAY        | 4155 | 103B | indeterminate 900 | LVM_SETHOTITEM                 | 4156 | 103C | indeterminate 901 | LVM_GETHOTITEM                 | 4157 | 103D | indeterminate 902 | LVM_SETHOTCURSOR               | 4158 | 103E | indeterminate 903 | LVM_GETHOTCURSOR               | 4159 | 103F | indeterminate 904 | LVM_APPROXIMATEVIEWRECT        | 4160 | 1040 | indeterminate 905 | LVM_SETWORKAREAS               | 4161 | 1041 | indeterminate 906 | LVM_GETSELECTIONMARK           | 4162 | 1042 | indeterminate 907 | LVM_SETSELECTIONMARK           | 4163 | 1043 | indeterminate 908 | LVM_SETBKIMAGE                 | 4164 | 1044 | indeterminate 909 | LVM_GETBKIMAGE                 | 4165 | 1045 | indeterminate 910 | LVM_GETWORKAREAS               | 4166 | 1046 | indeterminate 911 | LVM_SETHOVERTIME               | 4167 | 1047 | indeterminate 912 | LVM_GETHOVERTIME               | 4168 | 1048 | indeterminate 913 | LVM_GETNUMBEROFWORKAREAS       | 4169 | 1049 | indeterminate 914 | LVM_SETTOOLTIPS                | 4170 | 104A | indeterminate 915 | LVM_GETTOOLTIPS                | 4174 | 104E | indeterminate 916 | LVM_SORTITEMSEX                | 4177 | 1051 | indeterminate 917 | LVM_INSERTGROUP                | 4241 | 1091 | indeterminate 918 | LVM_SETGROUPINFO               | 4243 | 1093 | indeterminate 919 | LVM_GETGROUPINFO               | 4245 | 1095 | indeterminate 920 | LVM_REMOVEGROUP                | 4246 | 1096 | indeterminate 921 | LVM_SETGROUPMETRICS            | 4251 | 109B | indeterminate 922 | LVM_GETGROUPMETRICS            | 4252 | 109C | indeterminate 923 | LVM_ENABLEGROUPVIEW            | 4253 | 109D | indeterminate 924 | LVM_SORTGROUPS                 | 4254 | 109E | indeterminate 925 | LVM_INSERTGROUPSORTED          | 4255 | 109F | indeterminate 926 | LVM_REMOVEALLGROUPS            | 4256 | 10A0 | indeterminate 927 | LVM_HASGROUP                   | 4257 | 10A1 | indeterminate 928 | LVM_SETTILEVIEWINFO            | 4258 | 10A2 | indeterminate 929 | LVM_GETTILEVIEWINFO            | 4259 | 10A3 | indeterminate 930 | LVM_SETTILEINFO                | 4260 | 10A4 | indeterminate 931 | LVM_GETTILEINFO                | 4261 | 10A5 | indeterminate 932 | LVM_SETINSERTMARK              | 4262 | 10A6 | indeterminate 933 | LVM_GETINSERTMARK              | 4263 | 10A7 | indeterminate 934 | LVM_INSERTMARKHITTEST          | 4264 | 10A8 | indeterminate 935 | LVM_GETINSERTMARKRECT          | 4265 | 10A9 | indeterminate 936 | LVM_SETINSERTMARKCOLOR         | 4266 | 10AA | indeterminate 937 | LVM_GETINSERTMARKCOLOR         | 4267 | 10AB | indeterminate 938 | TVM_INSERTITEM                 | 4352 | 1100 | indeterminate 939 | TVM_DELETEITEM                 | 4353 | 1101 | indeterminate 940 | TVM_EXPAND                     | 4354 | 1102 | indeterminate 941 | TVM_GETITEMRECT                | 4356 | 1104 | indeterminate 942 | TVM_GETCOUNT                   | 4357 | 1105 | indeterminate 943 | TVM_GETINDENT                  | 4358 | 1106 | indeterminate 944 | TVM_SETINDENT                  | 4359 | 1107 | indeterminate 945 | TVM_GETIMAGELIST               | 4360 | 1108 | indeterminate 946 | TVM_SETIMAGELIST               | 4361 | 1109 | indeterminate 947 | TVM_GETNEXTITEM                | 4362 | 110A | indeterminate 948 | TVM_SELECTITEM                 | 4363 | 110B | indeterminate 949 | TVM_GETITEM                    | 4364 | 110C | indeterminate 950 | TVM_SETITEM                    | 4365 | 110D | indeterminate 951 | TVM_EDITLABEL                  | 4366 | 110E | indeterminate 952 | TVM_GETEDITCONTROL             | 4367 | 110F | indeterminate 953 | TVM_GETVISIBLECOUNT            | 4368 | 1110 | indeterminate 954 | TVM_HITTEST                    | 4369 | 1111 | indeterminate 955 | TVM_CREATEDRAGIMAGE            | 4370 | 1112 | indeterminate 956 | TVM_SORTCHILDREN               | 4371 | 1113 | indeterminate 957 | TVM_ENSUREVISIBLE              | 4372 | 1114 | indeterminate 958 | TVM_SORTCHILDRENCB             | 4373 | 1115 | indeterminate 959 | TVM_ENDEDITLABELNOW            | 4374 | 1116 | indeterminate 960 | TVM_GETISEARCHSTRING           | 4375 | 1117 | indeterminate 961 | TVM_SETTOOLTIPS                | 4376 | 1118 | indeterminate 962 | TVM_GETTOOLTIPS                | 4377 | 1119 | indeterminate 963 | TVM_SETINSERTMARK              | 4378 | 111A | indeterminate 964 | TVM_SETITEMHEIGHT              | 4379 | 111B | indeterminate 965 | TVM_GETITEMHEIGHT              | 4380 | 111C | indeterminate 966 | TVM_SETBKCOLOR                 | 4381 | 111D | indeterminate 967 | TVM_SETTEXTCOLOR               | 4382 | 111E | indeterminate 968 | TVM_GETBKCOLOR                 | 4383 | 111F | indeterminate 969 | TVM_GETTEXTCOLOR               | 4384 | 1120 | indeterminate 970 | TVM_SETSCROLLTIME              | 4385 | 1121 | indeterminate 971 | TVM_GETSCROLLTIME              | 4386 | 1122 | indeterminate 972 | TVM_SETINSERTMARKCOLOR         | 4389 | 1125 | indeterminate 973 | TVM_GETINSERTMARKCOLOR         | 4390 | 1126 | indeterminate 974 | TVM_GETITEMSTATE               | 4391 | 1127 | indeterminate 975 | TVM_SETLINECOLOR               | 4392 | 1128 | indeterminate 976 | TVM_GETLINECOLOR               | 4393 | 1129 | indeterminate 977 | HDM_GETITEMCOUNT               | 4608 | 1200 | indeterminate 978 | HDM_INSERTITEM                 | 4609 | 1201 | indeterminate 979 | HDM_DELETEITEM                 | 4610 | 1202 | indeterminate 980 | HDM_GETITEM                    | 4611 | 1203 | indeterminate 981 | HDM_SETITEM                    | 4612 | 1204 | indeterminate 982 | HDM_LAYOUT                     | 4613 | 1205 | indeterminate 983 | HDM_HITTEST                    | 4614 | 1206 | indeterminate 984 | HDM_GETITEMRECT                | 4615 | 1207 | indeterminate 985 | HDM_SETIMAGELIST               | 4616 | 1208 | indeterminate 986 | HDM_GETIMAGELIST               | 4617 | 1209 | indeterminate 987 | HDM_ORDERTOINDEX               | 4623 | 120F | indeterminate 988 | HDM_CREATEDRAGIMAGE            | 4624 | 1210 | indeterminate 989 | HDM_GETORDERARRAY              | 4625 | 1211 | indeterminate 990 | HDM_SETORDERARRAY              | 4626 | 1212 | indeterminate 991 | HDM_SETHOTDIVIDER              | 4627 | 1213 | indeterminate 992 | HDM_SETBITMAPMARGIN            | 4628 | 1214 | indeterminate 993 | HDM_GETBITMAPMARGIN            | 4629 | 1215 | indeterminate 994 | HDM_SETFILTERCHANGETIMEOUT     | 4630 | 1216 | indeterminate 995 | HDM_EDITFILTER                 | 4631 | 1217 | indeterminate 996 | HDM_CLEARFILTER                | 4632 | 1218 | indeterminate 997 | TCM_GETIMAGELIST               | 4866 | 1302 | indeterminate 998 | TCM_SETIMAGELIST               | 4867 | 1303 | indeterminate 999 | TCM_GETITEMCOUNT               | 4868 | 1304 | indeterminate1000 | TCM_GETITEM                    | 4869 | 1305 | indeterminate1001 | TCM_SETITEM                    | 4870 | 1306 | indeterminate1002 | TCM_INSERTITEM                 | 4871 | 1307 | indeterminate1003 | TCM_DELETEITEM                 | 4872 | 1308 | indeterminate1004 | TCM_DELETEALLITEMS             | 4873 | 1309 | indeterminate1005 | TCM_GETITEMRECT                | 4874 | 130A | indeterminate1006 | TCM_GETCURSEL                  | 4875 | 130B | indeterminate1007 | TCM_SETCURSEL                  | 4876 | 130C | indeterminate1008 | TCM_HITTEST                    | 4877 | 130D | indeterminate1009 | TCM_SETITEMEXTRA               | 4878 | 130E | indeterminate1010 | TCM_ADJUSTRECT                 | 4904 | 1328 | indeterminate1011 | TCM_SETITEMSIZE                | 4905 | 1329 | indeterminate1012 | TCM_REMOVEIMAGE                | 4906 | 132A | indeterminate1013 | TCM_SETPADDING                 | 4907 | 132B | indeterminate1014 | TCM_GETROWCOUNT                | 4908 | 132C | indeterminate1015 | TCM_GETTOOLTIPS                | 4909 | 132D | indeterminate1016 | TCM_SETTOOLTIPS                | 4910 | 132E | indeterminate1017 | TCM_GETCURFOCUS                | 4911 | 132F | indeterminate1018 | TCM_SETCURFOCUS                | 4912 | 1330 | indeterminate1019 | TCM_SETMINTABWIDTH             | 4913 | 1331 | indeterminate1020 | TCM_DESELECTALL                | 4914 | 1332 | indeterminate1021 | TCM_HIGHLIGHTITEM              | 4915 | 1333 | indeterminate1022 | TCM_SETEXTENDEDSTYLE           | 4916 | 1334 | indeterminate1023 | TCM_GETEXTENDEDSTYLE           | 4917 | 1335 | indeterminate1024 | PGM_SETCHILD                   | 5121 | 1401 | indeterminate1025 | PGM_RECALCSIZE                 | 5122 | 1402 | indeterminate1026 | PGM_FORWARDMOUSE               | 5123 | 1403 | indeterminate1027 | PGM_SETBKCOLOR                 | 5124 | 1404 | indeterminate1028 | PGM_GETBKCOLOR                 | 5125 | 1405 | indeterminate1029 | PGM_SETBORDER                  | 5126 | 1406 | indeterminate1030 | PGM_GETBORDER                  | 5127 | 1407 | indeterminate1031 | PGM_SETPOS                     | 5128 | 1408 | indeterminate1032 | PGM_GETPOS                     | 5129 | 1409 | indeterminate1033 | PGM_SETBUTTONSIZE              | 5130 | 140A | indeterminate1034 | PGM_GETBUTTONSIZE              | 5131 | 140B | indeterminate1035 | PGM_GETBUTTONSTATE             | 5132 | 140C | indeterminate1036 | PBM_SETBKCOLOR                 | 8193 | 2001 | indeterminate1037 | SB_SETBKCOLOR                  | 8193 | 2001 | indeterminate1038 | RB_SETCOLORSCHEME              | 8194 | 2002 | indeterminate1039 | TB_SETCOLORSCHEME              | 8194 | 2002 | indeterminate1040 | TB_GETCOLORSCHEME              | 8195 | 2003 | indeterminate1041 | RB_GETCOLORSCHEME              | 8195 | 2003 | indeterminate1042 | PGM_GETDROPTARGET              | 8196 | 2004 | indeterminate1043 | RB_GETDROPTARGET               | 8196 | 2004 | indeterminate1044 | TVM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1045 | RB_SETUNICODEFORMAT            | 8197 | 2005 | indeterminate1046 | CCM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1047 | SB_SETUNICODEFORMAT            | 8197 | 2005 | indeterminate1048 | TB_SETUNICODEFORMAT            | 8197 | 2005 | indeterminate1049 | MCM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1050 | HDM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1051 | TCM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1052 | UDM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1053 | CBEM_SETUNICODEFORMAT          | 8197 | 2005 | indeterminate1054 | TBM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1055 | LVM_SETUNICODEFORMAT           | 8197 | 2005 | indeterminate1056 | MCM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1057 | HDM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1058 | LVM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1059 | UDM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1060 | CBEM_GETUNICODEFORMAT          | 8198 | 2006 | indeterminate1061 | TVM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1062 | TBM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1063 | SB_GETUNICODEFORMAT            | 8198 | 2006 | indeterminate1064 | CCM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1065 | RB_GETUNICODEFORMAT            | 8198 | 2006 | indeterminate1066 | TB_GETUNICODEFORMAT            | 8198 | 2006 | indeterminate1067 | TCM_GETUNICODEFORMAT           | 8198 | 2006 | indeterminate1068 | CCM_SETVERSION                 | 8199 | 2007 | indeterminate1069 | CCM_GETVERSION                 | 8200 | 2008 | indeterminate1070 | OCM_DRAWITEM                   | 8235 | 202B | non-zero1071 | OCM_MEASUREITEM                | 8236 | 202C | non-zero1072 | OCM_DELETEITEM                 | 8237 | 202D | non-zero1073 | OCM_VKEYTOITEM                 | 8238 | 202E | variable1074 | OCM_CHARTOITEM                 | 8239 | 202F | variable1075 | OCM_COMPAREITEM                | 8249 | 2039 | variable1076 | OCM_NOTIFY                     | 8270 | 204E | variable1077 | OCM_COMMAND                    | 8465 | 2111 | 01078 | OCM_HSCROLL                    | 8468 | 2114 | 01079 | OCM_VSCROLL                    | 8469 | 2115 | 01080 | OCM_CTLCOLORMSGBOX             | 8498 | 2132 | HBRUSH1081 | OCM_CTLCOLOREDIT               | 8499 | 2133 | HBRUSH1082 | OCM_CTLCOLORLISTBOX            | 8500 | 2134 | HBRUSH1083 | OCM_CTLCOLORBTN                | 8501 | 2135 | HBRUSH1084 | OCM_CTLCOLORDLG                | 8502 | 2136 | HBRUSH1085 | OCM_CTLCOLORSCROLLBAR          | 8503 | 2137 | HBRUSH1086 | OCM_CTLCOLORSTATIC             | 8504 | 2138 | HBRUSH1087 | OCM_PARENTNOTIFY               | 8720 | 2210 | 0*/
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes." - the Laughing Man

This topic is closed to new replies.

Advertisement