/***   [dropdm.h]
*
*	For GNU C Compiler (GCC)
*
***/

struct dropdm_t {		/* ﾄﾞﾛｯﾌﾟﾀﾞｳﾝﾒﾆｭｰに関する構造体 */
	short	ntitle;			/* ﾀｲﾄﾙの数 */
	short	yt1, yt2;		/* ﾀｲﾄﾙの上部と下部の座標 */
	short	ym;				/* ﾒﾆｭｰ上部の座標 */
	struct menu_t	*m;
	char	shadow;			/* ﾒﾆｭｰに影を付けるか否か */
};
struct menu_t {		/* 各ﾀｲﾄﾙ毎のﾊﾟﾗﾒｰﾀ */
	short	xt;		/* ﾀｲﾄﾙの左端座標 */
	short	wt;		/* ﾀｲﾄﾙの幅 (ﾄﾞｯﾄ単位) */
	short	xm;		/* ﾒﾆｭｰの左端座標 */
	short	wm;		/* ﾒﾆｭｰの幅 (文字単位) */
	const char	**name;		/* 各ﾒﾆｭｰの名前 */
	const char	*mask;
};

int		DRPDM_main(int *, int *, struct dropdm_t *);
