home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
tmp9
/
p_errmsg.h
< prev
next >
Wrap
Text File
|
2002-01-20
|
2KB
|
45 lines
/*****************************************************************************/
/* Copyright (c) 1994 by Jyrki Salmi <jytasa@jyu.fi> */
/* You may modify, recompile and distribute this file freely. */
/*****************************************************************************/
U8 *os2_error_msg[] = {
"Failed to open file or device: \"%s\"",
"Failed to close file or device: \"%s\"",
"Failed to read from file or device: \"%s\"",
"Failed to write to file or device: \"%s\"",
"Failed to control device: \"%s\"",
"Failed to allocate %lu bytes of memory",
"Failed to free memory",
"Failed to create named pipe: \"%s\"",
"Failed to connect to named pipe: \"%s\"",
"Failed to disconnect named pipe: \"%s\"",
"Failed to peek in named pipe: \"%s\"",
"Failed to set handle state of named pipe: \"%s\"",
"Failed to load module: \"%s\"",
"Failed to free module: \"%s\"",
"Failed to query address of procedure: \"%s\"",
"Failed to change priority of process or thread",
"Failed to read the keyboard"
};
U8 *tcpip_error_msg[] = {
"Failed to initialize sockets",
"Failed to control socket #%lu",
"Failed to receive from socket #%lu",
"Failed to send to socket #%lu",
"Failed to create socket",
"Failed to bind to socket #%lu",
"Failed to listen to socket #%lu",
"Failed to accept connection from socket #%lu",
"Failed to resolve name of address \"%s\"",
"Failed to resolve IP address of \"%s\"",
"Failed to connect to socket #%lu",
"Failed to set option for socket #%lu",
"Failed to get option of socket #%lu",
"Failed to select from socket #%lu"
};