CLIPOBJ_ppoGetPath function (winddi.h)

The CLIPOBJ_ppoGetPath function creates a PATHOBJ structure that contains the outline of the specified clip region.

Syntax

PATHOBJ * CLIPOBJ_ppoGetPath(
  [in] CLIPOBJ *pco
);

Parameters

[in] pco

Pointer to a CLIPOBJ structure that defines the specified clip region.

Return value

The return value is a pointer to a PATHOBJ structure if the function is successful. Otherwise, it is NULL, and an error code is logged.

Remarks

The returned PATHOBJ structure should be deleted using EngDeletePath when the driver no longer needs it.

A driver for a device that can download a clipping path might prefer this function for defining complex regions.

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

CLIPOBJ

EngDeletePath

PATHOBJ