- Timestamp:
- Oct 6, 1999, 12:36:39 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/caret.h
r1077 r1154 1 /* $Id: caret.h,v 1. 1 1999-09-28 08:00:56dengert Exp $ */1 /* $Id: caret.h,v 1.2 1999-10-06 10:36:39 dengert Exp $ */ 2 2 3 3 /* … … 9 9 10 10 extern void recreateCaret (HWND hwndFocus); 11 extern BOOL WIN32API SetCaretPos (int x, int y); 12 extern BOOL WIN32API GetCaretPos (PPOINT pPoint); 11 13 -
trunk/src/user32/pmwindow.cpp
r1114 r1154 1 /* $Id: pmwindow.cpp,v 1.1 4 1999-10-03 20:38:01 sandervlExp $ */1 /* $Id: pmwindow.cpp,v 1.15 1999-10-06 10:36:39 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 330 330 WinSetMultWindowPos(GetThreadHAB(), swp, i); 331 331 } 332 if (yDelta != 0) 333 { 334 POINT pt; 335 GetCaretPos (&pt); 336 pt.y -= yDelta; 337 SetCaretPos (pt.x, pt.y); 338 } 332 339 win32wnd->MsgPosChanged((LPARAM)&wp); 333 340
Note:
See TracChangeset
for help on using the changeset viewer.