Pointwise Plugin SDK
Modules | Functions

Create grid importer plugins using C. More...

+ Collaboration diagram for Using C:

Modules

 Progress Handling
 
 GRDP Message Handling
 
 GRDP Variable Manager Tools
 
 GRDP Macros
 

Functions

PWP_BOOL runtimeReadGrid (GRDP_RTITEM *pRti)
 
PWP_BOOL runtimeReadGridCreate (GRDP_RTITEM *pRti)
 
PWP_VOID runtimeReadGridDestroy (GRDP_RTITEM *pRti)
 

Detailed Description

Create grid importer plugins using C.

Function Documentation

◆ runtimeReadGrid()

PWP_BOOL runtimeReadGrid ( GRDP_RTITEM pRti)

Called by the SDK to start the import of a grid model.

Parameters
pRtiPointer to the runtime item instance for this invocation of the importer.
Returns
PWP_TRUE on success.
Note
Plugin-specific data members can be added to GRDP_RTITEM. See rtGrdpInstanceData.h for details.
The grid model is accessed using pRti->model. The grid import settings are accessed using pRti->pReadInfo.
See also
rtGrdpInstanceData.h, rtGrdpInitItems.h

Referenced by PwGridRead().

◆ runtimeReadGridCreate()

PWP_BOOL runtimeReadGridCreate ( GRDP_RTITEM pRti)

Called once by the SDK when the plugin is first loaded.

Parameters
pRtiPointer to the runtime item instance for this invocation of the importer.
Returns
PWP_TRUE on success.
Note
This function is typically used to initilize a plugin's configuration. Modifying this function is optional. By defualt it does nothing and returns PWP_TRUE.

Referenced by grdpRuntimeCreate().

◆ runtimeReadGridDestroy()

PWP_VOID runtimeReadGridDestroy ( GRDP_RTITEM pRti)

Called once by the SDK when the plugin is being destroyed.

Parameters
pRtiPointer to the runtime item instance for this invocation of the importer.
Note
This function is typically used to cleanup a plugin's configuration. Modifying this function is optional. By defualt it does nothing.

Referenced by grdpRuntimeDestroy().