Changeset 21916 for trunk/src/user32/caret.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/user32/caret.cpp
r10379 r21916 23 23 #include <wprocess.h> 24 24 #include <misc.h> 25 #include <win32wbase.h>25 #include "win32wbase.h" 26 26 #include "oslibwin.h" 27 27 #include <dcdata.h> … … 40 40 #endif 41 41 42 #pragma data_seg(_GLOBALDATA) 43 44 static HWND hwndCaret = 0; 45 static HBITMAP hbmCaret; 46 static int CaretWidth, CaretHeight; 47 static int CaretPosX, CaretPosY; 48 static INT CaretIsVisible; //visible if >049 50 #pragma data_seg() 51 42 // 43 // Global DLL Data (keep it in sync with globaldata.asm!) 44 // 45 extern HWND hwndCaret; // = 0 46 extern HBITMAP hbmCaret; // = 0 47 extern int CaretWidth, CaretHeight; // = 0 48 extern int CaretPosX, CaretPosY; // = 0 49 extern INT CaretIsVisible; // =0, visible if > 0 50 51 extern "C" { 52 52 53 53 BOOL WIN32API CreateCaret (HWND hwnd, HBITMAP hBmp, int width, int height) … … 262 262 } 263 263 264 } // extern "C" 265 264 266 void recreateCaret (HWND hwndFocus) 265 267 {
Note:
See TracChangeset
for help on using the changeset viewer.