Fct_Help

 

Call the HTML help page for a specific topic.

 

 

Syntax

 

int  Fct_Help(

          char *topic,

          char *bookmark=NULL

) ;

 

 

Parameters

 

topic

Name of the HTML page you want to open. 

 

bookmark

Optional bookmark within the page.

 

 

Return value

 

This function return ?

 

 

Remarks

 

 

Requirements

 

Header:

          sliceO_include.hpp

 

Library:

          sliceO_Structures.lib

 

 

Example

 

 

// --- Get a pointer to the LOCAL help path ---

char **Interface_Help_Local = (char *) Fct_Variable_Get( "$INTERFACE_HELP_LOCAL" ) ;

 

// --- Momentarily hijack the path ---

char *keep_path = *Interface_Help_Local ;

*Interface_Help_Local = NULL ;

STRDUP( *Interface_Help_Local, "c:\temp\local_help" ) ;

 

Fct_Help( "My_Help_Page.htm" ) ;

 

// --- reset the path ---

FREE( *Interface_Help_Local ) ;

*Interface_Help_Local = keep_path;

 

 

 

See also

Ctrl_Help in the "The DLLs" section