blob: 05a047b1fa28494d38e4eab5e7b9c428261bb4cd (
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
|
/** \file
* \brief iupmatrix control
* memory allocation.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPMAT_MEM_H
#define __IUPMAT_MEM_H
#ifdef __cplusplus
extern "C" {
#endif
void iupMatrixMemAlloc(Ihandle* ih);
void iupMatrixMemRelease(Ihandle* ih);
void iupMatrixMemReAllocLines (Ihandle* ih, int old_num, int num, int base);
void iupMatrixMemReAllocColumns(Ihandle* ih, int old_num, int num, int base);
#ifdef __cplusplus
}
#endif
#endif
|