Changeset 1265 for trunk/src/user32/user32.cpp
- Timestamp:
- Oct 13, 1999, 4:24:49 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r1204 r1265 1 /* $Id: user32.cpp,v 1. 39 1999-10-08 21:29:50 cbratschiExp $ */1 /* $Id: user32.cpp,v 1.40 1999-10-13 14:24:25 sandervl Exp $ */ 2 2 3 3 /* … … 472 472 } 473 473 474 #if 0475 /* Caret Functions */476 477 BOOL WIN32API CreateCaret( HWND hWnd, HBITMAP hBitmap, int nWidth, int nHeight)478 {479 #ifdef DEBUG480 WriteLog("USER32: CreateCaret\n");481 #endif482 hWnd = Win32Window::Win32ToOS2Handle(hWnd);483 return O32_CreateCaret(hWnd,hBitmap,nWidth,nHeight);484 }485 //******************************************************************************486 //******************************************************************************487 BOOL WIN32API DestroyCaret(void)488 {489 #ifdef DEBUG490 WriteLog("USER32: DestroyCaret\n");491 #endif492 return O32_DestroyCaret();493 }494 //******************************************************************************495 //******************************************************************************496 UINT WIN32API GetCaretBlinkTime(void)497 {498 #ifdef DEBUG499 WriteLog("USER32: GetCaretBlinkTime\n");500 #endif501 return O32_GetCaretBlinkTime();502 }503 //******************************************************************************504 //******************************************************************************505 BOOL WIN32API GetCaretPos( LPPOINT lpPoint)506 {507 #ifdef DEBUG508 WriteLog("USER32: GetCaretPos\n");509 #endif510 return O32_GetCaretPos(lpPoint);511 }512 //******************************************************************************513 //******************************************************************************514 BOOL WIN32API HideCaret( HWND hWnd)515 {516 #ifdef DEBUG517 WriteLog("USER32: HideCaret\n");518 #endif519 hWnd = Win32Window::Win32ToOS2Handle(hWnd);520 return O32_HideCaret(hWnd);521 }522 //******************************************************************************523 //******************************************************************************524 BOOL WIN32API SetCaretBlinkTime( UINT wMSeconds)525 {526 #ifdef DEBUG527 WriteLog("USER32: SetCaretBlinkTime\n");528 #endif529 return O32_SetCaretBlinkTime(wMSeconds);530 }531 //******************************************************************************532 //******************************************************************************533 BOOL WIN32API SetCaretPos( int nX, int nY)534 {535 dprintf(("USER32: SetCaretPos\n"));536 return O32_SetCaretPos(nX,nY);537 }538 //******************************************************************************539 //******************************************************************************540 BOOL WIN32API ShowCaret( HWND hwnd)541 {542 dprintf(("USER32: ShowCaret\n"));543 hwnd = Win32Window::Win32ToOS2Handle(hwnd);544 return O32_ShowCaret(hwnd);545 }546 #endif547 548 474 /* Cursor Functions */ 549 475
Note:
See TracChangeset
for help on using the changeset viewer.