3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) INRIA - Allan CORNET
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
14 /*--------------------------------------------------------------------------*/
15 #ifndef __LOADCLASSPATH_H__
16 #define __LOADCLASSPATH_H__
18 #include <libxml/xmlreader.h>
20 #include "machine.h" /* BOOL */
23 * add paths to CLASSPATH
24 * @param a filename SCI/etc/classpath.xml
25 * @return TRUE or FALSE
27 BOOL LoadClasspath(char *xmlfilename);
31 * returns xmlDocPtr of classpath.xml
34 xmlDocPtr getClassPathxmlDocPtr(void);
36 #endif /* __LOADCLASSPATH_H__ */
37 /*--------------------------------------------------------------------------*/