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

Functions

CAEP_RTITEMcaeuFindFormatById (PWP_UINT32 id)
 Find an item in caepRtItem[] by it's id. More...
 
CAEP_RTITEMcaeuFindFormatByName (const char name[])
 Find an item in caepRtItem[] 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

◆ caeuFindFormatById()

CAEP_RTITEM* caeuFindFormatById ( PWP_UINT32  id)

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

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

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

Definition at line 23 of file apiCAEPUtils.cxx.

References caepFormatCnt, and caepRtItem.

Referenced by PwCreateCaeById().

◆ caeuFindFormatByName()

CAEP_RTITEM* caeuFindFormatByName ( const char  name[])

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

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

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

Definition at line 38 of file apiCAEPUtils.cxx.

References caepFormatCnt, and caepRtItem.

Referenced by PwCreateCaeByName().