comparison os2/dw.c @ 1382:3eedfd4f7c5d

Bleah.. VAC doesn't have MAX_PATH... define it ourselves.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 25 Nov 2011 17:45:34 +0000
parents 3ba4853d5b78
children 156e32814c83
comparison
equal deleted inserted replaced
1381:3ba4853d5b78 1382:3eedfd4f7c5d
41 41
42 #define QWP_USER 0 42 #define QWP_USER 0
43 43
44 /* The toolkit headers don't seem to have this */ 44 /* The toolkit headers don't seem to have this */
45 BOOL APIENTRY WinStretchPointer(HPS hps, LONG x, LONG y, LONG cx, LONG cy, HPOINTER hptr, ULONG fs); 45 BOOL APIENTRY WinStretchPointer(HPS hps, LONG x, LONG y, LONG cx, LONG cy, HPOINTER hptr, ULONG fs);
46
47 #ifndef MAX_PATH
48 #define MAX_PATH 260
49 #endif
46 50
47 MRESULT EXPENTRY _run_event(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2); 51 MRESULT EXPENTRY _run_event(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2);
48 MRESULT EXPENTRY _wndproc(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2); 52 MRESULT EXPENTRY _wndproc(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2);
49 MRESULT EXPENTRY _scrollwndproc(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2); 53 MRESULT EXPENTRY _scrollwndproc(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2);
50 void _do_resize(Box *thisbox, int x, int y); 54 void _do_resize(Box *thisbox, int x, int y);