SilverScreen Solid Modeler

pm_initialize

pm_initialize

Previous topic Next topic  

pm_initialize

Previous topic Next topic JavaScript is required for the print function  

SilverScreenAPI

 

void pm_initialize ( char *title, char *dummy )

 

char *title;      // panel title string

char *dummy;      // not used at present

 

 




Synopsis

#include "silver.h"

 

The pm_initialize function is the first step in the construction and display of a popup panel. After this function has been called, items are added to the panel (via pm_double , pm_menu , etc.) , and finally pm_execute is called. The panel will be displayed with title at the top. The variable dummy is will be used in a future version of SilverC. In this version, an empty string ("") should be used.

 

 

Parameters

title is a null-terminated string containing the title to be used with the panel. dummy is a character pointer, which is not used at present, and should be the empty string ("", not NULL).

 

 

Return Value

none.

 

 

See Also

pm_execute