blob: df5e16f7b1879ace52ae4e786034217b0ad0223a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/** \file
* \brief iupmatrix. change number of collumns or lines.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPMAT_NUMLC_H
#define __IUPMAT_NUMLC_H
#ifdef __cplusplus
extern "C" {
#endif
int iupMatrixSetAddLinAttrib(Ihandle* ih, const char* value);
int iupMatrixSetDelLinAttrib(Ihandle* ih, const char* value);
int iupMatrixSetAddColAttrib(Ihandle* ih, const char* value);
int iupMatrixSetDelColAttrib(Ihandle* ih, const char* value);
int iupMatrixSetNumLinAttrib(Ihandle* ih, const char* value);
int iupMatrixSetNumColAttrib(Ihandle* ih, const char* value);
#ifdef __cplusplus
}
#endif
#endif
|