/*************************************************************************
*	CCI
*************************************************************************/

int		_cci_install(char *instdir,int item_setup)
{
	int			ret, att;
	char	   *srcdir, *instfile;
	char		tmp[256];

	syl_putf("CCI INSTALL");

	srcdir    = "/TAROPYON/CCI";
	instfile  = "*.exp *.dll *.doc *.lst *.h *.c *.bat *.exe";

	srcdir = _tc_getFcopySrcDir( srcdir, tmp);
	att    = _FCOPY_MODE_INIT;
	ret    =  FCOPY_exec(att, srcdir, instfile, instdir);

	return (ret);
}
