home *** CD-ROM | disk | FTP | other *** search
/ Phoenix Heaven Sunny 2 / APPARE2.BIN / oh_towns / taropyon / install / _he386.c < prev    next >
Text File  |  1995-06-20  |  572b  |  22 lines

  1. /*************************************************************************
  2. *    HE386
  3. *************************************************************************/
  4.  
  5. int        _he386_install(char *instdir,int item_setup)
  6. {
  7.     int            ret, att;
  8.     char       *srcdir, *instfile;
  9.     char        tmp[256];
  10.  
  11.     syl_putf("HE386 INSTALL");
  12.  
  13.     srcdir    = "/OH_TOWNS/TAROPYON/HE386";
  14.     instfile  = "*.exp *.dll *.cci *.c *.h *.doc *.mml *.def";
  15.  
  16.     srcdir = _tc_getFcopySrcDir( srcdir, tmp);
  17.     att    = _FCOPY_MODE_INIT;
  18.     ret    =  FCOPY_exec(att, srcdir, instfile, instdir);
  19.  
  20.     return (ret);
  21. }
  22.