1 /*
2  * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3  * Copyright (C) 2008 - INRIA - Jean-Baptiste Silvy
4  * desc : Functions to export files
5  *
6  * Copyright (C) 2012 - 2016 - Scilab Enterprises
7  *
8  * This file is hereby licensed under the terms of the GNU GPL v2.0,
9  * pursuant to article 5.3.4 of the CeCILL v.2.1.
10  * This file was originally licensed under the terms of the CeCILL v2.1,
11  * and continues to be available under such terms.
12  * For more information, see the COPYING file which you should have received
13  * along with this program.
14  *
15  */
16 
17 #ifndef _EXPORT_USER_INTERFACE_HXX_
18 #define _EXPORT_USER_INTERFACE_HXX_
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 #include "dynlib_gui.h"
25 /**
26  * Call the graphic export GUI
27  * @param figreId id of the figure to export
28  */
29 GUI_IMPEXP int exportUserInterface(int figureId);
30 
31 #ifdef __cplusplus
32 }
33 #endif
34 
35 #endif /* _EXPORT_USER_INTERFACE_HXX_ */
36 
37