Has bug,

void *names[] =
{
  "Times Roman 24",
  " Times Roman 10",
  "  9 by 15",
  "   8 by 13",
  "    Helvetica 10",
  "     Helvetica 12",
  "      Helvetica 18",
#ifdef JIS_FONT
  "    Mincho JIS"
#endif
};

should read

char *names[] =
{
  "Times Roman 24",
  " Times Roman 10",
  "  9 by 15",
  "   8 by 13",
  "    Helvetica 10",
  "     Helvetica 12",
  "      Helvetica 18",
#ifdef JIS_FONT
  "    Mincho JIS"
#endif
};

or throws compiler error

the function
that uses the type expects a char*

void output(int x, int y, char * msg)

Simple enough.

-Jose

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Reply via email to