00001 /*-----------------------------------------------------------------------------------*/ 00002 /* INRIA 2007 */ 00003 /* Sylvestre LEDRU */ 00004 /*-----------------------------------------------------------------------------------*/ 00005 #ifndef __SCICURDIR_H__ 00006 #define __SCICURDIR_H__ 00007 /******************************* 00008 * Changes scilab current directory 00009 * @param path : the path where Scilab should go 00010 * @param[out] err : the error code 00011 *******************************/ 00012 int C2F(scichdir)(char *path,int *err); 00013 00014 /******************************* 00015 * Get scilab current directory 00016 * @param[out] path : the current path 00017 * @param[out] lpath : the length of the char * path 00018 * @param[out] err : the error code 00019 *******************************/ 00020 int C2F(scigetcwd)(char **path,int *lpath,int *err); 00021 00022 #endif /* __SCICURDIR_H__ */ 00023 /*-----------------------------------------------------------------------------------*/
1.5.1