home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / tmp9 / p_errmsg.h < prev    next >
Text File  |  2002-01-20  |  2KB  |  45 lines

  1. /*****************************************************************************/
  2. /*             Copyright (c) 1994 by Jyrki Salmi <jytasa@jyu.fi>             */
  3. /*        You may modify, recompile and distribute this file freely.         */
  4. /*****************************************************************************/
  5.  
  6. U8 *os2_error_msg[] = {
  7.  
  8.   "Failed to open file or device: \"%s\"",
  9.   "Failed to close file or device: \"%s\"",
  10.   "Failed to read from file or device: \"%s\"",
  11.   "Failed to write to file or device: \"%s\"",
  12.   "Failed to control device: \"%s\"",
  13.   "Failed to allocate %lu bytes of memory",
  14.   "Failed to free memory",
  15.   "Failed to create named pipe: \"%s\"",
  16.   "Failed to connect to named pipe: \"%s\"",
  17.   "Failed to disconnect named pipe: \"%s\"",
  18.   "Failed to peek in named pipe: \"%s\"",
  19.   "Failed to set handle state of named pipe: \"%s\"",
  20.   "Failed to load module: \"%s\"",
  21.   "Failed to free module: \"%s\"",
  22.   "Failed to query address of procedure: \"%s\"",
  23.   "Failed to change priority of process or thread",
  24.   "Failed to read the keyboard"
  25. };
  26.  
  27. U8 *tcpip_error_msg[] = {
  28.  
  29.   "Failed to initialize sockets",
  30.   "Failed to control socket #%lu",
  31.   "Failed to receive from socket #%lu",
  32.   "Failed to send to socket #%lu",
  33.   "Failed to create socket",
  34.   "Failed to bind to socket #%lu",
  35.   "Failed to listen to socket #%lu",
  36.   "Failed to accept connection from socket #%lu",
  37.   "Failed to resolve name of address \"%s\"",
  38.   "Failed to resolve IP address of \"%s\"",
  39.   "Failed to connect to socket #%lu",
  40.   "Failed to set option for socket #%lu",
  41.   "Failed to get option of socket #%lu",
  42.   "Failed to select from socket #%lu"
  43. };
  44.  
  45.