upiwin/src/config.h

20 lines
390 B
C
Raw Normal View History

#ifndef __CONFIG_H_INCLUDED
#define __CONFIG_H_INCLUDED
#include "wintype.h"
typedef void (*PEXITFUNC)(void);
typedef struct tagGLOBAL_CONFIG {
PCSTR framebuffer_device;
UINT32 button_debounce;
UINT32 sys_mq_length;
} GLOBAL_CONFIG;
extern GLOBAL_CONFIG Gconfig;
extern HRESULT Config_setup(void);
extern HRESULT Config_exitfunc(PEXITFUNC pfn);
#endif /* __CONFIG_H_INCLUDED */