#ifndef INCLUDED_FPSMODULE_H #define INCLUDED_FPSMODULE_H #ifdef __cplusplus extern "C" { #endif #include "dllmodule.h" #include "numbertype.h" struct _MyInstance; typedef struct _Instance { struct _MyInstance* my; NumberType* out_fps; } Instance, *InstancePtr; enum Outputs { out_fps = 0 }; struct _MyInstance* construct(void); void destruct(struct _MyInstance*); int init(logT log_function); #ifdef __cplusplus } #endif #endif