File:  [RetroPC.NET] / np2 / x11 / ini.h
Revision 1.1: download - view: text, annotated - select for diffs
Mon Nov 17 01:43:45 2003 JST (21 years, 11 months ago) by monaka
Branches: MAIN
CVS tags: HEAD
Neko Project II for X11 (only support GTK+ GUI Toolkit)

#ifndef	NP2_X11_INI_H__
#define	NP2_X11_INI_H__

enum {
	INITYPE_STR		= 0,
	INITYPE_BOOL,
	INITYPE_ARGS16,
	INITYPE_ARGH8,
	INITYPE_SINT8,
	INITYPE_SINT16,
	INITYPE_SINT32,
	INITYPE_UINT8,
	INITYPE_UINT16,
	INITYPE_UINT32,
	INITYPE_HEX8,
	INITYPE_HEX16,
	INITYPE_HEX32,
	INITYPE_BYTE3,
	INITYPE_KB,
	INITYPE_USER,
	INITYPE_SNDDRV,
	INITYPE_MASK		= 0xff,

	INIFLAG_RO		= 0x0100,
	INIFLAG_MAX		= 0x0200,
	INIFLAG_AND		= 0x0400,
};

typedef struct {
	const char	item[10];
	const UINT16	itemtype;
	const void	*value;
	const UINT32	arg;
} INITBL;

#ifdef __cplusplus
extern "C" {
#endif

void ini_read(const char *path, const char *title, const INITBL *tbl, UINT count);
void ini_write(const char *path, const char *title, const INITBL *tbl, UINT count);

void initload(void);
void initsave(void);

#ifdef __cplusplus
}
#endif

#endif	/* NP2_X11_INI_H__ */

RetroPC.NET-CVS <cvs@retropc.net>