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
|
/*-----------------------------------------------------------------------------------*/
/* INRIA 2005 */
/* Allan CORNET */
/*-----------------------------------------------------------------------------------*/
#ifndef __INTGRAPHICS__
#define __INTGRAPHICS__
#ifdef WIN32
#include <windows.h>
#include <stdio.h>
#endif
#include "../machine.h"
#include "../stack-c.h"
typedef int (*des_interf) __PARAMS((char *fname,unsigned long l));
typedef struct table_struct {
des_interf f; /** function **/
char *name; /** its name **/
} MatdesTable;
#endif /* __INTGRAPHICS__ */
/*-----------------------------------------------------------------------------------*/
|