// ntddvdeo.h
typedef struct _VIDEO_POINTER_POSITION {
SHORT Column;
SHORT Row;
} VIDEO_POINTER_POSITION, *PVIDEO_POINTER_POSITION;
View the official Windows Driver Kit DDI referenceNo description available.
The VIDEO_POINTER_POSITION structure contains the location of the screen pointer relative to the top left corner of the screen.
ColumnSpecifies the column location of the pointer in pixels, starting from the top left corner of the screen.
RowSpecifies the row location of the pointer in pixels, starting from the top left corner of the screen.