PATHOBJ_bMoveTo function (winddi.h)

The PATHOBJ_bMoveTo function sets the current position in a given path.

Syntax

ENGAPI BOOL PATHOBJ_bMoveTo(
  PATHOBJ  *ppo,
  POINTFIX ptfx
);

Parameters

ppo

Pointer to a PATHOBJ structure created by the driver.

ptfx

Pointer to a POINTFIX structure that specifies the new position. For a description of this data type, see GDI Data Types.

Return value

The return value is TRUE if the function is successful. Otherwise, it is FALSE, and an error code is logged.

Remarks

This function should only be called with PATHOBJ structures created by EngCreatePath.

Requirements

Requirement Value
Minimum supported client Available in Windows 2000 and later versions of the Windows operating systems.
Target Platform Universal
Header winddi.h (include Winddi.h)
Library Win32k.lib
DLL Win32k.sys

See also

EngCreatePath

PATHOBJ