#ifndef __CONFIG_H_INCLUDED #define __CONFIG_H_INCLUDED #include "wintype.h" typedef void (*PEXITFUNC)(void); /* global configuration data for UPIWIN */ typedef struct tagGLOBAL_CONFIG { PCSTR framebuffer_device; /* name of frame buffer device */ PCSTR touchscreen_device; /* name of touchscreen device */ PCSTR python_loc; /* location of the Python3 executable */ UINT32 button_debounce; /* minimum time between button up and next button down (ms) */ UINT32 sys_mq_length; /* length of system message queue */ } GLOBAL_CONFIG; extern GLOBAL_CONFIG Gconfig; /* one global configuration to rule them all */ extern HRESULT Config_setup(int argc, char *argv[]); extern HRESULT Config_exitfunc(PEXITFUNC pfn); #endif /* __CONFIG_H_INCLUDED */