Browse Source

+ More TrackMouseEvent

michael 21 years ago
parent
commit
4882e76657
2 changed files with 17 additions and 3 deletions
  1. 12 1
      rtl/win32/wininc/defines.inc
  2. 5 2
      rtl/win32/wininc/struct.inc

+ 12 - 1
rtl/win32/wininc/defines.inc

@@ -5329,6 +5329,14 @@ const
   ICON_SMALL			       = 0;
   ICON_BIG  			       = 1;
 
+  // For the TRackMouseEvent
+  TME_HOVER     = $00000001;
+  TME_LEAVE     = $00000002;
+  TME_QUERY     = $40000000;
+  TME_CANCEL    = DWORD($80000000);
+  HOVER_DEFAULT = DWORD($FFFFFFFF);
+        
+
 {$endif read_interface}
 
 
@@ -5912,7 +5920,10 @@ const
 
 {
   $Log$
-  Revision 1.16  2004-02-06 22:47:19  marco
+  Revision 1.17  2004-07-27 12:03:15  michael
+  + More TrackMouseEvent
+
+  Revision 1.16  2004/02/06 22:47:19  marco
    * Macro changed to constant
 
   Revision 1.15  2003/12/05 09:13:46  marco

+ 5 - 2
rtl/win32/wininc/struct.inc

@@ -6561,7 +6561,7 @@ type
 
   // TrackMouseEvent. NT or higher only.
   TTrackMouseEvent = Record
-    cbize : DWORD;
+    cbSize : DWORD;
     dwFlags : DWORD;
     hwndTrack : HWND;
     dwHoverTime : DWORD;
@@ -7037,7 +7037,10 @@ type
 
 {
   $Log$
-  Revision 1.25  2004-07-26 06:48:30  michael
+  Revision 1.26  2004-07-27 12:03:15  michael
+  + More TrackMouseEvent
+
+  Revision 1.25  2004/07/26 06:48:30  michael
   + Added trackmouseevent call and structures
 
   Revision 1.24  2004/05/04 10:34:29  marco