comparison win/dw.c @ 73:2f339dd13496

Added C/C++ style escape sequence processing. And fixed a couple OS/2 and Windows bugs.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 18 Feb 2002 08:43:34 +0000
parents ab77a22a2a36
children c629838d9805
comparison
equal deleted inserted replaced
72:ab77a22a2a36 73:2f339dd13496
2685 memset(&wc, 0, sizeof(WNDCLASS)); 2685 memset(&wc, 0, sizeof(WNDCLASS));
2686 wc.style = CS_DBLCLKS; 2686 wc.style = CS_DBLCLKS;
2687 wc.lpfnWndProc = (WNDPROC)_framewndproc; 2687 wc.lpfnWndProc = (WNDPROC)_framewndproc;
2688 wc.cbClsExtra = 0; 2688 wc.cbClsExtra = 0;
2689 wc.cbWndExtra = 32; 2689 wc.cbWndExtra = 32;
2690 wc.hbrBackground = (HBRUSH)COLOR_WINDOW; 2690 wc.hbrBackground = (HBRUSH)GetSysColorBrush(COLOR_3DFACE);
2691 wc.hCursor = LoadCursor(NULL, IDC_ARROW); 2691 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
2692 wc.lpszMenuName = NULL; 2692 wc.lpszMenuName = NULL;
2693 wc.lpszClassName = FRAMECLASSNAME; 2693 wc.lpszClassName = FRAMECLASSNAME;
2694 2694
2695 RegisterClass(&wc); 2695 RegisterClass(&wc);