24 lines
377 B
C
Executable File
24 lines
377 B
C
Executable File
/** \file
|
|
* \brief iupmatrix. keyboard control.
|
|
*
|
|
* See Copyright Notice in "iup.h"
|
|
*/
|
|
|
|
#ifndef __IUPMAT_KEY_H
|
|
#define __IUPMAT_KEY_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int iupMatrixKeyPress_CB(Ihandle* ih, int c, int press);
|
|
int iupMatrixProcessKeyPress(Ihandle* ih, int c);
|
|
|
|
void iupMatrixKeyResetHomeEndCount(Ihandle* ih);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|