Pointwise Plugin SDK
Functions
+ Collaboration diagram for GRDP/SDK Data Access Functions:

Functions

GRDP_RTITEMgrdpFindFormatById (PWP_UINT32 id)
 Find an item in grdpRtItem[] by it's id. More...
 
GRDP_RTITEMgrdpFindFormatByName (const char name[])
 Find an item in grdpRtItem[] by it's name. More...
 

Detailed Description

These calls are used by the SDK to access the SDK data structures. They are avaliable for use by a plugin, but probably will not be needed.

Function Documentation

◆ grdpFindFormatById()

GRDP_RTITEM* grdpFindFormatById ( PWP_UINT32  id)

Find an item in grdpRtItem[] by it's id.

Find grdpRtItem[] item with grdpRtItem[n].FormatInfo.id == id.

Parameters
idThe format GUID
Returns
Pointer to matching item or null if not found.

Definition at line 18 of file apiGRDPUtils.cxx.

References grdpFormatCnt, and grdpRtItem.

Referenced by PwCreateGrdpById().

◆ grdpFindFormatByName()

GRDP_RTITEM* grdpFindFormatByName ( const char  name[])

Find an item in grdpRtItem[] by it's name.

Find grdpRtItem[] item with grdpRtItem[n].FormatInfo.name == name.

Parameters
nameThe format name
Returns
Pointer to matching item or null if not found

Definition at line 33 of file apiGRDPUtils.cxx.

References grdpFormatCnt, and grdpRtItem.

Referenced by PwCreateGrdpByName().