Ignore:
Timestamp:
Dec 29, 2000, 7:41:23 PM (25 years ago)
Author:
sandervl
Message:

Win32ToOS2Handle & OS2ToWin32Handle exported with stdcall calling convention

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/caret.cpp

    r4825 r4848  
    1 /* $Id: caret.cpp,v 1.14 2000-12-17 15:04:09 sandervl Exp $ */
     1/* $Id: caret.cpp,v 1.15 2000-12-29 18:39:58 sandervl Exp $ */
    22
    33/*
     
    2020#include <win32api.h>
    2121#include <winconst.h>
     22#include <winuser32.h>
    2223#include <wprocess.h>
    2324#include <misc.h>
     
    230231   CaretIsVisible++;
    231232   if (CaretIsVisible == 1)
    232      rc = _ShowCaret (Win32BaseWindow::Win32ToOS2Handle (hwnd));
     233     rc = _ShowCaret (Win32ToOS2Handle (hwnd));
    233234   else
    234235     rc = TRUE;
     
    245246   CaretIsVisible--;
    246247   if (CaretIsVisible == 0)
    247      rc = _HideCaret (Win32BaseWindow::Win32ToOS2Handle (hwnd));
     248     rc = _HideCaret (Win32ToOS2Handle (hwnd));
    248249   else
    249250     rc = TRUE;
     
    265266      SetCaretPos (CaretPosX, CaretPosY);
    266267      if (CaretIsVisible > 0)
    267         _ShowCaret(Win32BaseWindow::Win32ToOS2Handle(hwndCaret));
    268    }
    269 }
     268        _ShowCaret(Win32ToOS2Handle(hwndCaret));
     269   }
     270}
Note: See TracChangeset for help on using the changeset viewer.