#include <stdio.h>
#include <stdlib.h>
#include <winb.h>
#include <te.h>
#include <fntb.h>
#include <gui.h>

extern int	CLI_winId ;
extern int	CLI_winFunc() ;
extern int	CLI_msgId[1] ;

#define ALIGN	4
#define OFFSET(type) (sizeof(MMIPACKET) + (sizeof(type)+ALIGN-1)/ALIGN*ALIGN)

/*	MMI_init 用データ	*/

/*	ヘッダ	*/

MMIINIT	initDataCLISET = { "MmiInit",   3, 0 } ;

/* CLI_winId */

static MMIPACKET d001 = {	&CLI_winId,
							NULL,
							&MJ_WINDOWL40,
							OFFSET(WINDOWL40),
							MS_NONE
						} ;
static WINDOWL40	d001d = {	MS_BTLEFTL40 | MS_EVMOSONL40 | MS_TITLEL40 | MS_CLOSEL40,
							  58, 146, 312, 229, 8,15, 8,
							MS_SRECTL40 | MS_FRAMEL40,
							NULL,   0,   0,
							   1,  17,   0,   0,
							 128,  96, 640, 480,
							CLI_winFunc,
							"メタクライアント V2.1 L10",
						} ;

/* CLI_msgId[0] */

static MMIPACKET d002 = {	&CLI_msgId[0],
							&CLI_winId,
							&MJ_MSGL40,
							OFFSET(MSGL40),
							MS_NONE
						} ;
static MSGL40	d002d = 	{	MS_CENTERL40 | MS_DSPONLYL40,
							  72, 194, 293, 211, 8,15, 8,
							MS_OPAQUEL40,
							"<< 何もありません >>",
							   1,  12,  12,
							MS_NONEL40,
							   0,   0
						} ;

/* NULL */

static MMIPACKET d003 = {	NULL,
							&CLI_winId,
							&MJ_MSGL40,
							0,
							MS_NONE
						} ;
static MSGL40	d003d = 	{	MS_CENTERL40 | MS_DSPONLYL40,
							 115, 171, 250, 188, 8,15, 8,
							MS_OPAQUEL40,
							"ドロップされた文字列",
							   1,  12,  12,
							MS_NONEL40,
							   0,   0
						} ;

