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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*!
\file GSX.c
\brief OGSF library - loading and manipulating surfaces
GRASS OpenGL gsurf OGSF Library
(C) 1999-2008 by the GRASS Development Team
This program is free software under the
GNU General Public License (>=v2).
Read the file COPYING that comes with GRASS
for details.
\author Bill Brown USACERL (December 1993)
\author Doxygenized by Martin Landa <landa.martin gmail.com> (May 2008)
*/
#include <grass/gstypes.h>
void (*Cxl_func) ();
void (*Swap_func) ();
static int Cxl = 0;
/*!
\brief Check for cancel
\return code
*/
int GS_check_cancel(void)
{
Cxl_func();
return (Cxl);
}
/*!
\brief Set cancel
*/
void GS_set_cancel(int c)
{
Cxl = c;
return;
}
/*!
\brief Set cxl function
\param pointer to function
*/
void GS_set_cxl_func(void (*f) (void))
{
Cxl_func = f;
return;
}
/*!
\brief Set swap function
\param pointer to function
*/
void GS_set_swap_func(void (*f) (void))
{
Swap_func = f;
return;
}
|