CURSORPROCINFO

include vmd.inc
 
CursorProcInfo Struc
CursorProcAddress   dd ?  ; address of cursor callback function
NextCursorProcInfo  dd ?  ; address of next callback function
Video_Mode_Low      dw ?  ; video mode, low resolution
Video_Mode_High     dw ?  ; video mode, high resolution
Priority            db ?  ; priority of cursor callback function
Flags               dw ?  ; see below
CursorProcInfo Ends
 

Contains information about the cursor-drawing callback function provided by a cursor VxD.

Flags
Video-mode override flag. A cursor VxD that provides enhanced cursor-drawing capablities for the video modes specified in Video_Mode_Low and Video_Mode_High should set this flag to DC_SupportsOverride. When the video mode changes, VMOUSE calls all cursor drivers that have this flag set and selects the one with the highest priority.

See also VMD_Set_Cursor_Proc