Ignore:
Timestamp:
Oct 13, 1999, 4:24:49 PM (26 years ago)
Author:
sandervl
Message:

lots of changes

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 cbratschi Exp $ */
     1/* $Id: user32.cpp,v 1.40 1999-10-13 14:24:25 sandervl Exp $ */
    22
    33/*
     
    472472}
    473473
    474 #if 0
    475 /* Caret Functions */
    476 
    477 BOOL WIN32API CreateCaret( HWND hWnd, HBITMAP hBitmap, int nWidth, int nHeight)
    478 {
    479 #ifdef DEBUG
    480     WriteLog("USER32:  CreateCaret\n");
    481 #endif
    482     hWnd = Win32Window::Win32ToOS2Handle(hWnd);
    483     return O32_CreateCaret(hWnd,hBitmap,nWidth,nHeight);
    484 }
    485 //******************************************************************************
    486 //******************************************************************************
    487 BOOL WIN32API DestroyCaret(void)
    488 {
    489 #ifdef DEBUG
    490     WriteLog("USER32:  DestroyCaret\n");
    491 #endif
    492     return O32_DestroyCaret();
    493 }
    494 //******************************************************************************
    495 //******************************************************************************
    496 UINT WIN32API GetCaretBlinkTime(void)
    497 {
    498 #ifdef DEBUG
    499     WriteLog("USER32:  GetCaretBlinkTime\n");
    500 #endif
    501     return O32_GetCaretBlinkTime();
    502 }
    503 //******************************************************************************
    504 //******************************************************************************
    505 BOOL WIN32API GetCaretPos( LPPOINT lpPoint)
    506 {
    507 #ifdef DEBUG
    508     WriteLog("USER32:  GetCaretPos\n");
    509 #endif
    510     return O32_GetCaretPos(lpPoint);
    511 }
    512 //******************************************************************************
    513 //******************************************************************************
    514 BOOL WIN32API HideCaret( HWND hWnd)
    515 {
    516 #ifdef DEBUG
    517     WriteLog("USER32:  HideCaret\n");
    518 #endif
    519     hWnd = Win32Window::Win32ToOS2Handle(hWnd);
    520     return O32_HideCaret(hWnd);
    521 }
    522 //******************************************************************************
    523 //******************************************************************************
    524 BOOL WIN32API SetCaretBlinkTime( UINT wMSeconds)
    525 {
    526 #ifdef DEBUG
    527     WriteLog("USER32:  SetCaretBlinkTime\n");
    528 #endif
    529     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 #endif
    547 
    548474/* Cursor Functions */
    549475
Note: See TracChangeset for help on using the changeset viewer.