855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
|
WPARAM wParam, LPARAM lParam) {
HDC hdc;
static int ignore_size = FALSE;
static int ignore_clip = FALSE;
static int ignore_keymenu = TRUE;
static int just_reconfigged = FALSE;
if (message != 275)
debug(("msg=%d wParam=%08x lParam=%08x\r\n", message, wParam, lParam));
switch (message) {
case WM_TIMER:
if (pending_netevent)
enact_pending_netevent();
if (inbuf_head)
term_out();
term_update();
|
<
<
<
|
855
856
857
858
859
860
861
862
863
864
865
866
867
868
|
WPARAM wParam, LPARAM lParam) {
HDC hdc;
static int ignore_size = FALSE;
static int ignore_clip = FALSE;
static int ignore_keymenu = TRUE;
static int just_reconfigged = FALSE;
switch (message) {
case WM_TIMER:
if (pending_netevent)
enact_pending_netevent();
if (inbuf_head)
term_out();
term_update();
|