Changeset 5606 for trunk/src/user32/user32.cpp
- Timestamp:
- Apr 27, 2001, 7:36:39 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r5509 r5606 1 /* $Id: user32.cpp,v 1.9 6 2001-04-15 14:29:48 sandervl Exp $ */1 /* $Id: user32.cpp,v 1.97 2001-04-27 17:36:38 sandervl Exp $ */ 2 2 3 3 /* … … 327 327 /* Mouse Input Functions */ 328 328 329 /*****************************************************************************330 * Name : BOOL WIN32API DragDetect331 * Purpose : The DragDetect function captures the mouse and tracks its movement332 * Parameters: HWND hwnd333 * POINT pt334 * Variables :335 * Result : If the user moved the mouse outside of the drag rectangle while336 * holding the left button down, the return value is TRUE.337 * If the user did not move the mouse outside of the drag rectangle338 * while holding the left button down, the return value is FALSE.339 * Remark :340 * Status : UNTESTED STUB341 *342 * Author : Patrick Haller [Thu, 1998/02/26 11:55]343 *****************************************************************************/344 BOOL WIN32API DragDetect(HWND hwnd,345 POINT pt)346 {347 dprintf(("USER32:DragDetect(%08xh,...) not implemented.\n",348 hwnd));349 350 return (FALSE);351 }352 //******************************************************************************353 //******************************************************************************354 UINT WIN32API GetDoubleClickTime(void)355 {356 dprintf(("USER32: GetDoubleClickTime\n"));357 return O32_GetDoubleClickTime();358 }359 /*****************************************************************************360 * Name : VOID WIN32API mouse_event361 * Purpose : The mouse_event function synthesizes mouse motion and button clicks.362 * Parameters: DWORD dwFlags flags specifying various motion/click variants363 * DWORD dx horizontal mouse position or position change364 * DWORD dy vertical mouse position or position change365 * DWORD cButtons unused, reserved for future use, set to zero366 * DWORD dwExtraInfo 32 bits of application-defined information367 * Variables :368 * Result :369 * Remark :370 * Status : UNTESTED STUB371 *372 * Author : Patrick Haller [Thu, 1998/02/26 11:55]373 *****************************************************************************/374 VOID WIN32API mouse_event(DWORD dwFlags,375 DWORD dx,376 DWORD dy,377 DWORD cButtons,378 DWORD dwExtraInfo)379 {380 dprintf(("USER32:mouse_event (%08xh,%u,%u,%u,%08x) not implemented.\n",381 dwFlags,382 dx,383 dy,384 cButtons,385 dwExtraInfo));386 }387 //******************************************************************************388 //******************************************************************************389 BOOL WIN32API SetDoubleClickTime( UINT uInterval)390 {391 dprintf(("USER32: SetDoubleClickTime\n"));392 return O32_SetDoubleClickTime(uInterval);393 }394 //******************************************************************************395 //******************************************************************************396 BOOL WIN32API SwapMouseButton( BOOL fSwap)397 {398 dprintf(("USER32: SwapMouseButton\n"));399 return O32_SwapMouseButton(fSwap);400 }401 402 329 /* Error Functions */ 403 330
Note:
See TracChangeset
for help on using the changeset viewer.