Changeset 1446 for trunk/src/user32/caret.cpp
- Timestamp:
- Oct 25, 1999, 10:17:41 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/caret.cpp
r1405 r1446 1 /* $Id: caret.cpp,v 1. 6 1999-10-22 18:11:42sandervl Exp $ */1 /* $Id: caret.cpp,v 1.7 1999-10-25 20:17:16 sandervl Exp $ */ 2 2 3 3 /* … … 33 33 #pragma data_seg(_GLOBALDATA) 34 34 35 static HWND hwndCaret ;35 static HWND hwndCaret = 0; 36 36 static HBITMAP hbmCaret; 37 37 static int CaretWidth, CaretHeight; … … 44 44 BOOL WIN32API CreateCaret (HWND hwnd, HBITMAP hBmp, int width, int height) 45 45 { 46 dprintf(("USER32: CreateCaret "));46 dprintf(("USER32: CreateCaret %x", hwnd)); 47 47 48 48 if (hwnd == NULLHANDLE) … … 216 216 BOOL rc = FALSE; 217 217 218 dprintf(("USER32: ShowCaret "));218 dprintf(("USER32: ShowCaret %x", hwnd)); 219 219 220 220 CaretIsVisible = TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.