次の方法で共有


PFN_DISP_DRIVER_MOVE_CURSOR (Compact 2013)

3/26/2014

This function moves the cursor to a specified location.

Syntax

typedef VOID (*PFN_DISP_DRIVER_MOVE_CURSOR)(
  INT32 X,
  INT32 Y
);

Parameters

  • X
    [in] New x location of the cursor left side.
  • Y
    [in] New y location of the cursor top.

Return Value

None.

Remarks

You pass a function pointer of this type to the proxy driver function TouchPanelInitializeCursor to have the driver position the cursor. You call TouchPanelInitializeCursor after you call TouchPanelEnable or TouchPanelEnableEx to enable the driver. The driver or touch proxy driver that GWES loads need not implement TouchPanelInitializeCursor. If it does, GWES will call it, supplying a pointer to function DispDrvrMoveCursor as the argument. The touch proxy driver supplied with Compact 2013 does not implement TouchPanelInitializeCursor.

Requirements

Header

tchddi.h

See Also

Reference

Touch Proxy Driver Functions