/* * vpplug.h * * Manejo de Plug-ins (.dll en win32, .so en unix) para parametros * virtuales * Declaraciones comunes al programa principal y a los plug-in * spd@daphne.cps.unizar.es * Ultima modificacion: Sat Oct 4 23:12:26 GMT--1:00 1997 */ #ifdef __cplusplus extern "C" { #endif #define VPPLUGIN_MAIN vp_plug-in_main #define VPPLUGIN_INIT vp_plug-in_init #define VPPLUGIN_FLUSH vp_plug-in_flush #define VPPLUGIN_MAGIC vp_plug-in_magic #define VPPLUGIN_MAGIC_VALUE 0x60b1 #define VPPLUGIN_NAME vp_plug-in_name #define VPPLUGIN_MAX_NAME_LENGHT 32 #define VPFLOAT float typedef VPFLOAT (* VP_PTR)(VPFLOAT,VPFLOAT,VPFLOAT); typedef int (* VP_INIT)(void); #ifdef __cplusplus } #endif