#ifndef	_TB_DEFS_H
#define	_TB_DEFS_H

typedef struct		/* 日付データ構造体（8bytes）	*/
{
	unsigned short		year;
	unsigned char	month;		/* 1-12 */
	unsigned char	day;		/* 1-32 */
	unsigned char	week;		/* 0-7  */
	unsigned char	hour;		/* 0-23 */
	unsigned char	minute;		/* 0-59 */
	unsigned char	second;		/* 0-59 */
} DATETIME;

typedef struct
{
	short	x1, y1, x2, y2;
} FRAME;

typedef struct
{
	short	x, y;
} POINT;

#endif
