setgetSCIpath.h File Reference

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void setSCIpath (char *path)
char * getSCIpath (void)


Function Documentation

char* getSCIpath ( void   ) 

get SCI path

Returns:
the path to Scilab

Definition at line 19 of file setgetSCIpath.c.

Referenced by C2F(), ConfigureScilabStar(), CreateCppShared(), ExistJavaSciUnix(), ExistModelicac(), GetLanguageCodeInScilabDotStar(), getsci(), GetSciPath(), getversionmodule(), GoScilab(), InitializeJVM(), loadfamilyGif(), LoadHashTablesLocalization(), parsescipath(), ReadModulesFile(), ScilabPsToEps(), ScilabPsToTeX(), scipvmstart(), and VerifyModule().

00020 {
00021         char *pathtoreturn=NULL;
00022         pathtoreturn=(char*)MALLOC(sizeof(char)*(strlen(SCIPATH)+1));
00023         sprintf(pathtoreturn,"%s",SCIPATH);
00024         return pathtoreturn;
00025 }

Here is the caller graph for this function:

void setSCIpath ( char *  path  ) 

save SCI path

Parameters:
path a char * in order to set the Scilab Path

Definition at line 14 of file setgetSCIpath.c.

References SCIPATH.

Referenced by GetScilabDirectory(), Initialize(), Set_SCI_PATH(), SetSci(), and StartScilab().

00015 {
00016         sprintf(SCIPATH,"%s",path);
00017 }

Here is the caller graph for this function:


Generated on Sun Mar 4 15:13:22 2007 for Scilab [trunk] by  doxygen 1.5.1