comparison os2/dw.c @ 337:e9a424e641ff

Some pointer changes.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 10 Apr 2003 12:33:29 +0000
parents a2f72b5d5d0a
children 4029240b5e63
comparison
equal deleted inserted replaced
336:a2f72b5d5d0a 337:e9a424e641ff
3549 * cursortype: ID of the pointer you want. 3549 * cursortype: ID of the pointer you want.
3550 */ 3550 */
3551 void API dw_window_pointer(HWND handle, int pointertype) 3551 void API dw_window_pointer(HWND handle, int pointertype)
3552 { 3552 {
3553 WinSetPointer(handle, 3553 WinSetPointer(handle,
3554 pointertype < 65535 ?
3554 WinQuerySysPointer(HWND_DESKTOP, 3555 WinQuerySysPointer(HWND_DESKTOP,
3555 pointertype, 3556 pointertype,
3556 FALSE)); 3557 FALSE) : (HPOINTER)pointertype);
3557 } 3558 }
3558 3559
3559 /* 3560 /*
3560 * Create a new Window Frame. 3561 * Create a new Window Frame.
3561 * Parameters: 3562 * Parameters: