1 /*
2  * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3  * Copyright (C) 2008 - INRIA - Vincent COUVERT
4  * Copyright (C) 2010 - DIGITEO - Bruno JOFRET
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 /*-----------------------------------------------------------------------------------*/
18 #include "dynlib_matio.h"
19 #include "dynlib_matio_gw.h"
20 /*-----------------------------------------------------------------------------------*/
21 #ifndef __GW_MATIO_H__
22 #define __GW_MATIO_H__
23 /*-----------------------------------------------------------------------------------*/
24 MATIO_IMPEXP int gw_matio(void);
25 
26 /*-----------------------------------------------------------------------------------*/
27 /* interface for the previous function Table */
28 /*-----------------------------------------------------------------------------------*/
29 MATIO_GW_IMPEXP int sci_matfile_open(char* fname, void* pvApiCtx);
30 MATIO_GW_IMPEXP int sci_matfile_close(char* fname, void* pvApiCtx);
31 MATIO_GW_IMPEXP int sci_matfile_listvar(char* fname, void* pvApiCtx);
32 MATIO_GW_IMPEXP int sci_matfile_varreadnext(char* fname, void* pvApiCtx);
33 MATIO_GW_IMPEXP int sci_matfile_varwrite(char* fname, void* pvApiCtx);
34 #endif /* __GW_MATIO_H__ */
35