home *** CD-ROM | disk | FTP | other *** search
- #ifndef __WSLERROR_H__
- #define __WSLERROR_H__
-
- /*
- * Xceed Winsock Library: Error Codes
- * Copyright 2000, Xceed Software Inc.
- *
- * Description:
- * This file contains the error code definitions
- * for Xceed Winsock Library COM interfaces
- *
- * Notes:
- * - This file is generated by MC.EXE from file wslError.mc
- *
- */
-
-
- //
- // Values are 32 bit values layed out as follows:
- //
- // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
- // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
- // +-+-+-+-+-+---------------------+-------------------------------+
- // |S|R|C|N|r| Facility | Code |
- // +-+-+-+-+-+---------------------+-------------------------------+
- //
- // where
- //
- // S - Severity - indicates success/fail
- //
- // 0 - Success
- // 1 - Fail (COERROR)
- //
- // R - reserved portion of the facility code, corresponds to NT's
- // second severity bit.
- //
- // C - reserved portion of the facility code, corresponds to NT's
- // C field.
- //
- // N - reserved portion of the facility code. Used to indicate a
- // mapped NT status value.
- //
- // r - reserved portion of the facility code. Reserved for internal
- // use. Used to indicate HRESULT values that are not status
- // values, but are instead message ids for display strings.
- //
- // Facility - is the facility code
- //
- // Code - is the facility's status code
- //
- //
- // Define the facility codes
- //
- #define FACILITY_ITF 4
-
-
- //
- // Define the severity codes
- //
- #define SEVERITY_SUCCESS 0
- #define SEVERITY_COERROR 2
-
-
- //
- // MessageId: WSL_E_ERROR_BASE
- //
- // MessageText:
- //
- // Base error code for Xceed Winsock Library
- //
- #define WSL_E_ERROR_BASE ((HRESULT)0x80041000L)
-
- //
- // MessageId: WSL_E_NETWORKISDOWN
- //
- // MessageText:
- //
- // The network subsystem is down.
- //
- #define WSL_E_NETWORKISDOWN ((HRESULT)0x80041001L)
-
- //
- // MessageId: WSL_E_NETWORKUNREACHABLE
- //
- // MessageText:
- //
- // Could not reach the remote host.
- //
- #define WSL_E_NETWORKUNREACHABLE ((HRESULT)0x80041002L)
-
- //
- // MessageId: WSL_E_LOSTCONNECTION
- //
- // MessageText:
- //
- // The connection to the remote host has been broken. The remote host has stopped responding or has closed the connection.
- //
- #define WSL_E_LOSTCONNECTION ((HRESULT)0x80041003L)
-
- //
- // MessageId: WSL_E_IOENGINEFAILURE
- //
- // MessageText:
- //
- // An error occured while accessing the internal I/O engine.
- //
- #define WSL_E_IOENGINEFAILURE ((HRESULT)0x80041004L)
-
- //
- // MessageId: WSL_E_INSUFFICIENTPRIVILEGES
- //
- // MessageText:
- //
- // Could not perform the requested operation due to insufficient privileges.
- //
- #define WSL_E_INSUFFICIENTPRIVILEGES ((HRESULT)0x80041005L)
-
- //
- // MessageId: WSL_E_GITREGISTER
- //
- // MessageText:
- //
- // Failed to register an interface pointer in the Global Interface Table.
- //
- #define WSL_E_GITREGISTER ((HRESULT)0x80041006L)
-
- //
- // MessageId: WSL_E_GITRETRIEVE
- //
- // MessageText:
- //
- // Failed to retrieve an interface pointer from the Global Interface Table.
- //
- #define WSL_E_GITRETRIEVE ((HRESULT)0x80041007L)
-
- //
- // MessageId: WSL_E_GITREVOKE
- //
- // MessageText:
- //
- // Failed to revoke an interface pointer from the Global Interface Table.
- //
- #define WSL_E_GITREVOKE ((HRESULT)0x80041008L)
-
- //
- // MessageId: WSL_E_OUTOFBUFFERSPACE
- //
- // MessageText:
- //
- // No more Winsock internal buffer space is available.
- //
- #define WSL_E_OUTOFBUFFERSPACE ((HRESULT)0x80041009L)
-
- //
- // MessageId: WSL_E_OUTOFSOCKETDESCRIPTORS
- //
- // MessageText:
- //
- // No more socket descriptors are available.
- //
- #define WSL_E_OUTOFSOCKETDESCRIPTORS ((HRESULT)0x8004100AL)
-
- //
- // MessageId: WSL_E_INDEXOUTOFBOUNDS
- //
- // MessageText:
- //
- // The index does not refer to an existing item.
- //
- #define WSL_E_INDEXOUTOFBOUNDS ((HRESULT)0x8004100BL)
-
- //
- // MessageId: WSL_E_COLLECTIONISDYNAMIC
- //
- // MessageText:
- //
- // Can not perform the requested operation on the collection because the collection is dynamic.
- //
- #define WSL_E_COLLECTIONISDYNAMIC ((HRESULT)0x8004100CL)
-
- //
- // MessageId: WSL_E_INVALIDSOCKET
- //
- // MessageText:
- //
- // The socket has been invalidated and can not be used any further.
- //
- #define WSL_E_INVALIDSOCKET ((HRESULT)0x8004100DL)
-
- //
- // MessageId: WSL_E_INVALIDSOCKETSTATE
- //
- // MessageText:
- //
- // The current state of the socket prevents the method call from being performed.
- //
- #define WSL_E_INVALIDSOCKETSTATE ((HRESULT)0x8004100EL)
-
- //
- // MessageId: WSL_E_INVALIDSOCKETTYPE
- //
- // MessageText:
- //
- // This type of socket does not support the requested operation.
- //
- #define WSL_E_INVALIDSOCKETTYPE ((HRESULT)0x8004100FL)
-
- //
- // MessageId: WSL_E_SOCKETNOTBOUND
- //
- // MessageText:
- //
- // A local address has not been assigned to the socket.
- //
- #define WSL_E_SOCKETNOTBOUND ((HRESULT)0x80041010L)
-
- //
- // MessageId: WSL_E_NOTCONNECTED
- //
- // MessageText:
- //
- // The socket is not connected.
- //
- #define WSL_E_NOTCONNECTED ((HRESULT)0x80041011L)
-
- //
- // MessageId: WSL_E_ALREADYCONNECTED
- //
- // MessageText:
- //
- // The socket is already connected to a remote host.
- //
- #define WSL_E_ALREADYCONNECTED ((HRESULT)0x80041012L)
-
- //
- // MessageId: WSL_E_NOTLISTENING
- //
- // MessageText:
- //
- // The socket is not listening for incoming connections.
- //
- #define WSL_E_NOTLISTENING ((HRESULT)0x80041013L)
-
- //
- // MessageId: WSL_E_ALREADYLISTENING
- //
- // MessageText:
- //
- // The socket is already listening for incoming connections.
- //
- #define WSL_E_ALREADYLISTENING ((HRESULT)0x80041014L)
-
- //
- // MessageId: WSL_E_INVALIDSOCKETOPTION
- //
- // MessageText:
- //
- // The socket option level or the option value is invalid.
- //
- #define WSL_E_INVALIDSOCKETOPTION ((HRESULT)0x80041015L)
-
- //
- // MessageId: WSL_E_SOCKETNOTCREATED
- //
- // MessageText:
- //
- // Could not create the socket due to an unexpected error.
- //
- #define WSL_E_SOCKETNOTCREATED ((HRESULT)0x80041016L)
-
- //
- // MessageId: WSL_E_SOCKETOPTIONNOTSUPPORTED
- //
- // MessageText:
- //
- // The socket option is unknown or not supported by the socket.
- //
- #define WSL_E_SOCKETOPTIONNOTSUPPORTED ((HRESULT)0x80041017L)
-
- //
- // MessageId: WSL_E_SOCKETOPTIONFAILED
- //
- // MessageText:
- //
- // The socket option could not be set/retrieved due to an unexpected error.
- //
- #define WSL_E_SOCKETOPTIONFAILED ((HRESULT)0x80041018L)
-
- //
- // MessageId: WSL_E_KEEPALIVETIMEDOUT
- //
- // MessageText:
- //
- // Cannot set socket option SO_KEEPALIVE because the connection has timed out.
- //
- #define WSL_E_KEEPALIVETIMEDOUT ((HRESULT)0x80041019L)
-
- //
- // MessageId: WSL_E_KEEPALIVEABORTED
- //
- // MessageText:
- //
- // Cannot set socket option SO_KEEPALIVE because the connection has been aborted.
- //
- #define WSL_E_KEEPALIVEABORTED ((HRESULT)0x8004101AL)
-
- //
- // MessageId: WSL_E_LOCALADDRESSNOTKNOWN
- //
- // MessageText:
- //
- // The local address of the socket is not known yet.
- //
- #define WSL_E_LOCALADDRESSNOTKNOWN ((HRESULT)0x8004101BL)
-
- //
- // MessageId: WSL_E_LOCALADDRESSINUSE
- //
- // MessageText:
- //
- // The local address could not be set because it is currently used by another process, and the socket has not been marked to allow address reuse.
- //
- #define WSL_E_LOCALADDRESSINUSE ((HRESULT)0x8004101CL)
-
- //
- // MessageId: WSL_E_LOCALADDRESSDENIED
- //
- // MessageText:
- //
- // The local address could not be set because it is currently used by another process with exclusive access.
- //
- #define WSL_E_LOCALADDRESSDENIED ((HRESULT)0x8004101DL)
-
- //
- // MessageId: WSL_E_LOCALADDRESSFAILED
- //
- // MessageText:
- //
- // The local address of the socket could not be set/retrieved due to an unexpected error.
- //
- #define WSL_E_LOCALADDRESSFAILED ((HRESULT)0x8004101EL)
-
- //
- // MessageId: WSL_E_REMOTEADDRESSFAILED
- //
- // MessageText:
- //
- // The remote address of the socket could not be set/retrieved due to an unexpected error.
- //
- #define WSL_E_REMOTEADDRESSFAILED ((HRESULT)0x8004101FL)
-
- //
- // MessageId: WSL_E_SOCKETALREADYBOUND
- //
- // MessageText:
- //
- // A local address has already been assigned to the socket.
- //
- #define WSL_E_SOCKETALREADYBOUND ((HRESULT)0x80041020L)
-
- //
- // MessageId: WSL_E_INVALIDADDRESS
- //
- // MessageText:
- //
- // The address is not valid.
- //
- #define WSL_E_INVALIDADDRESS ((HRESULT)0x80041021L)
-
- //
- // MessageId: WSL_E_INVALIDADDRESSSTRING
- //
- // MessageText:
- //
- // The address string could not be converted to an address structure.
- //
- #define WSL_E_INVALIDADDRESSSTRING ((HRESULT)0x80041022L)
-
- //
- // MessageId: WSL_E_EXTENDEDADDRESS
- //
- // MessageText:
- //
- // The address already contains an extended address.
- //
- #define WSL_E_EXTENDEDADDRESS ((HRESULT)0x80041023L)
-
- //
- // MessageId: WSL_E_BROADCASTNOTENABLED
- //
- // MessageText:
- //
- // The address is a broadcast address, and the SO_BROADCAST socket option has not been enabled.
- //
- #define WSL_E_BROADCASTNOTENABLED ((HRESULT)0x80041024L)
-
- //
- // MessageId: WSL_E_ADDRESSNOTSUPPORTED
- //
- // MessageText:
- //
- // The address is not supported on the system.
- //
- #define WSL_E_ADDRESSNOTSUPPORTED ((HRESULT)0x80041025L)
-
- //
- // MessageId: WSL_E_INCOMPATIBLEADDRESSFAMILY
- //
- // MessageText:
- //
- // The address family is not supported by the socket.
- //
- #define WSL_E_INCOMPATIBLEADDRESSFAMILY ((HRESULT)0x80041026L)
-
- //
- // MessageId: WSL_E_ADDRESSFAMILYNOTSUPPORTED
- //
- // MessageText:
- //
- // The address family is not supported on the system.
- //
- #define WSL_E_ADDRESSFAMILYNOTSUPPORTED ((HRESULT)0x80041027L)
-
- //
- // MessageId: WSL_E_PROTOCOLNOTSUPPORTED
- //
- // MessageText:
- //
- // The protocol is not supported on the system.
- //
- #define WSL_E_PROTOCOLNOTSUPPORTED ((HRESULT)0x80041028L)
-
- //
- // MessageId: WSL_E_INVALIDPROTOCOLPROVIDER
- //
- // MessageText:
- //
- // The Winsock service provider implementing this protocol is not valid.
- //
- #define WSL_E_INVALIDPROTOCOLPROVIDER ((HRESULT)0x80041029L)
-
- //
- // MessageId: WSL_E_PROTOCOLTYPENOTSUPPORTED
- //
- // MessageText:
- //
- // The socket type does not support the protocol type.
- //
- #define WSL_E_PROTOCOLTYPENOTSUPPORTED ((HRESULT)0x8004102AL)
-
- //
- // MessageId: WSL_E_SOCKETTYPENOTSUPPORTED
- //
- // MessageText:
- //
- // The address family does not support the socket type.
- //
- #define WSL_E_SOCKETTYPENOTSUPPORTED ((HRESULT)0x8004102BL)
-
- //
- // MessageId: WSL_E_CONNECTIONREFUSED
- //
- // MessageText:
- //
- // The connection request was rejected by the remote host.
- //
- #define WSL_E_CONNECTIONREFUSED ((HRESULT)0x8004102CL)
-
- //
- // MessageId: WSL_E_QOSNOTSATISFIED
- //
- // MessageText:
- //
- // The requested quality of service flow specification could not be satisfied.
- //
- #define WSL_E_QOSNOTSATISFIED ((HRESULT)0x8004102DL)
-
- //
- // MessageId: WSL_E_CONNECTDATANOTSUPPORTED
- //
- // MessageText:
- //
- // The protocol does not support connection data (caller/callee data).
- //
- #define WSL_E_CONNECTDATANOTSUPPORTED ((HRESULT)0x8004102EL)
-
- //
- // MessageId: WSL_E_CONNECTTIMEDOUT
- //
- // MessageText:
- //
- // The connection request timed out.
- //
- #define WSL_E_CONNECTTIMEDOUT ((HRESULT)0x8004102FL)
-
- //
- // MessageId: WSL_E_CONNECTFAILED
- //
- // MessageText:
- //
- // Could not connect to remote host due to an unexpected error.
- //
- #define WSL_E_CONNECTFAILED ((HRESULT)0x80041030L)
-
- //
- // MessageId: WSL_E_STARTLISTENINGFAILED
- //
- // MessageText:
- //
- // Could not start listening on the socket due to an unexpected error.
- //
- #define WSL_E_STARTLISTENINGFAILED ((HRESULT)0x80041031L)
-
- //
- // MessageId: WSL_E_SENDINGFILE
- //
- // MessageText:
- //
- // Could not perform the requested transfer operation because the socket is currently sending a file to the remote host.
- //
- #define WSL_E_SENDINGFILE ((HRESULT)0x80041032L)
-
- //
- // MessageId: WSL_E_RECEIVINGFILE
- //
- // MessageText:
- //
- // Could not perform the requested transfer operation because the socket is currently receiving a file from the remote host.
- //
- #define WSL_E_RECEIVINGFILE ((HRESULT)0x80041033L)
-
- //
- // MessageId: WSL_E_UNIDIRECTIONALSOCKET
- //
- // MessageText:
- //
- // The socket is unidirectional and does not support the requested transfer operation.
- //
- #define WSL_E_UNIDIRECTIONALSOCKET ((HRESULT)0x80041034L)
-
- //
- // MessageId: WSL_E_TOOMANYPENDINGIO
- //
- // MessageText:
- //
- // Could not perform the requested transfer operation because there are too many pending I/O requests.
- //
- #define WSL_E_TOOMANYPENDINGIO ((HRESULT)0x80041035L)
-
- //
- // MessageId: WSL_E_SENDPACKETSIZE
- //
- // MessageText:
- //
- // Could not send the packet because its size exceeds the maximum packet size supported by the protocol.
- //
- #define WSL_E_SENDPACKETSIZE ((HRESULT)0x80041036L)
-
- //
- // MessageId: WSL_E_SENDTIMEDOUT
- //
- // MessageText:
- //
- // The requested send operation timed out.
- //
- #define WSL_E_SENDTIMEDOUT ((HRESULT)0x80041037L)
-
- //
- // MessageId: WSL_E_SENDFAILED
- //
- // MessageText:
- //
- // Could not send data on the socket due to an unexpected error.
- //
- #define WSL_E_SENDFAILED ((HRESULT)0x80041038L)
-
- //
- // MessageId: WSL_E_RECEIVETIMEDOUT
- //
- // MessageText:
- //
- // The requested receive operation timed out.
- //
- #define WSL_E_RECEIVETIMEDOUT ((HRESULT)0x80041039L)
-
- //
- // MessageId: WSL_E_RECEIVEFAILED
- //
- // MessageText:
- //
- // Could not receive data from the socket due to an unexpected error.
- //
- #define WSL_E_RECEIVEFAILED ((HRESULT)0x8004103AL)
-
- //
- // MessageId: WSL_E_FILETOSENDNOTFOUND
- //
- // MessageText:
- //
- // Could not find or access the file to send to the remote host.
- //
- #define WSL_E_FILETOSENDNOTFOUND ((HRESULT)0x8004103BL)
-
- //
- // MessageId: WSL_E_INVALIDFILEOFFSET
- //
- // MessageText:
- //
- // The specified file offset is greater that the size of the file.
- //
- #define WSL_E_INVALIDFILEOFFSET ((HRESULT)0x8004103CL)
-
- //
- // MessageId: WSL_E_READFILETOSEND
- //
- // MessageText:
- //
- // An error occured while reading the file to send to the remote host.
- //
- #define WSL_E_READFILETOSEND ((HRESULT)0x8004103DL)
-
- //
- // MessageId: WSL_E_CREATEFILETORECEIVE
- //
- // MessageText:
- //
- // Could not create the local file in which data must be received.
- //
- #define WSL_E_CREATEFILETORECEIVE ((HRESULT)0x8004103EL)
-
- //
- // MessageId: WSL_E_WRITEFILETORECEIVE
- //
- // MessageText:
- //
- // An error occured while writing to the file in which data must be received.
- //
- #define WSL_E_WRITEFILETORECEIVE ((HRESULT)0x8004103FL)
-
- //
- // MessageId: WSL_E_ADVISELIMIT
- //
- // MessageText:
- //
- // The maximum number of allowable advised event interfaces has been reached.
- //
- #define WSL_E_ADVISELIMIT ((HRESULT)0x80041040L)
-
- //
- // MessageId: WSL_E_ALREADYADVISED
- //
- // MessageText:
- //
- // An event interface for the same kind of notification has already been advised.
- //
- #define WSL_E_ALREADYADVISED ((HRESULT)0x80041041L)
-
- //
- // MessageId: WSL_E_INVALIDADVISECOOKIE
- //
- // MessageText:
- //
- // The advise cookie does not represent a valid advised event interface, or no event interface has been advised.
- //
- #define WSL_E_INVALIDADVISECOOKIE ((HRESULT)0x80041042L)
-
- //
- // MessageId: WSL_E_NOTADVISED
- //
- // MessageText:
- //
- // Could not perform the requested asynchronous operation because no event interface has been advised.
- //
- #define WSL_E_NOTADVISED ((HRESULT)0x80041043L)
-
- //
- // MessageId: WSL_E_ENUMNSPROVIDERSFAILED
- //
- // MessageText:
- //
- // Could not retrieve list of available name space providers due to an unexpected error.
- //
- #define WSL_E_ENUMNSPROVIDERSFAILED ((HRESULT)0x80041044L)
-
- //
- // MessageId: WSL_E_ENUMPROTOCOLSFAILED
- //
- // MessageText:
- //
- // Could not retrieve list of available protocols due to an unexpected error.
- //
- #define WSL_E_ENUMPROTOCOLSFAILED ((HRESULT)0x80041045L)
-
- //
- // MessageId: WSL_E_GETPROTOCOLFAILED
- //
- // MessageText:
- //
- // Could not get the requested protocol due to an unexpected error.
- //
- #define WSL_E_GETPROTOCOLFAILED ((HRESULT)0x80041046L)
-
- //
- // MessageId: WSL_E_SERVICECLASSALREADYINSTALLED
- //
- // MessageText:
- //
- // Could not install the service class because it is already installed.
- //
- #define WSL_E_SERVICECLASSALREADYINSTALLED ((HRESULT)0x80041047L)
-
- //
- // MessageId: WSL_E_INVALIDSERVICECLASSINFO
- //
- // MessageText:
- //
- // Could not install the service class because the information is invalid or not properly structured.
- //
- #define WSL_E_INVALIDSERVICECLASSINFO ((HRESULT)0x80041048L)
-
- //
- // MessageId: WSL_E_INSTALLSERVICECLASSFAILED
- //
- // MessageText:
- //
- // Could not install the service class due to an unexpected error.
- //
- #define WSL_E_INSTALLSERVICECLASSFAILED ((HRESULT)0x80041049L)
-
- //
- // MessageId: WSL_E_SERVICECLASSNOTFOUND
- //
- // MessageText:
- //
- // The service class does not exist.
- //
- #define WSL_E_SERVICECLASSNOTFOUND ((HRESULT)0x8004104AL)
-
- //
- // MessageId: WSL_E_SERVICENOTFOUND
- //
- // MessageText:
- //
- // The service was not found.
- //
- #define WSL_E_SERVICENOTFOUND ((HRESULT)0x8004104BL)
-
- //
- // MessageId: WSL_E_REMOVESERVICECLASSFAILED
- //
- // MessageText:
- //
- // Could not remove the service class due to an unexpected error.
- //
- #define WSL_E_REMOVESERVICECLASSFAILED ((HRESULT)0x8004104CL)
-
- //
- // MessageId: WSL_E_GETSERVICECLASSINFOFAILED
- //
- // MessageText:
- //
- // Could not retrieve service class information due to an unexpected error.
- //
- #define WSL_E_GETSERVICECLASSINFOFAILED ((HRESULT)0x8004104DL)
-
- //
- // MessageId: WSL_E_ADVERTISEFAILED
- //
- // MessageText:
- //
- // Could not advertise/unadvertise the service provider due to an unexpected error.
- //
- #define WSL_E_ADVERTISEFAILED ((HRESULT)0x8004104EL)
-
- //
- // MessageId: WSL_E_NODATAFORSERVICENAME
- //
- // MessageText:
- //
- // The service name was found, but no data is available.
- //
- #define WSL_E_NODATAFORSERVICENAME ((HRESULT)0x8004104FL)
-
- //
- // MessageId: WSL_E_LISTENINGTIMEDOUT
- //
- // MessageText:
- //
- // The requested listening operation timed out.
- //
- #define WSL_E_LISTENINGTIMEDOUT ((HRESULT)0x80041050L)
-
- //
- // MessageId: WSL_E_SENDFILEFAILED
- //
- // MessageText:
- //
- // Could not send the data read from the file due to an unexpected error.
- //
- #define WSL_E_SENDFILEFAILED ((HRESULT)0x80041051L)
-
- //
- // MessageId: WSL_E_INVALIDWINSOCKVERSION
- //
- // MessageText:
- //
- // The required Winsock version is not supported on this system.
- //
- #define WSL_E_INVALIDWINSOCKVERSION ((HRESULT)0x80041052L)
-
- //
- // MessageId: WSL_E_WINSOCKINITFAILED
- //
- // MessageText:
- //
- // Could not initialize Winsock due to an unexpected error.
- //
- #define WSL_E_WINSOCKINITFAILED ((HRESULT)0x80041053L)
-
- //
- // MessageId: WSL_E_NOTLICENSED
- //
- // MessageText:
- //
- // The license key required to use Xceed Winsock Library was not found or is invalid.
- //
- #define WSL_E_NOTLICENSED ((HRESULT)0x80041054L)
-
- //
- // MessageId: WSL_E_PROTOCOLFAILED
- //
- // MessageText:
- //
- // The protocol of the socket could not be set/retrieved due to an unexpected error.
- //
- #define WSL_E_PROTOCOLFAILED ((HRESULT)0x80041055L)
-
- //
- // MessageId: WSL_E_OPERATIONABORTED
- //
- // MessageText:
- //
- // The operation has been aborted.
- //
- #define WSL_E_OPERATIONABORTED ((HRESULT)0x80041056L)
-
- //
- // MessageId: WSL_E_HOSTNAMENOTAVAILABLE
- //
- // MessageText:
- //
- // There is no host name defined for this address.
- //
- #define WSL_E_HOSTNAMENOTAVAILABLE ((HRESULT)0x80041057L)
-
- //
- // MessageId: WSL_E_HOSTNAMEFAILED
- //
- // MessageText:
- //
- // The host name could not be retrieved due to an unexpected error.
- //
- #define WSL_E_HOSTNAMEFAILED ((HRESULT)0x80041058L)
-
- //
- // MessageId: WSL_E_HOSTNAMENOTFOUND
- //
- // MessageText:
- //
- // The host name could not be found in the name space.
- //
- #define WSL_E_HOSTNAMENOTFOUND ((HRESULT)0x80041059L)
-
- //
- // MessageId: WSL_E_INFONOTAVAILABLE
- //
- // MessageText:
- //
- // The requested information is not available.
- //
- #define WSL_E_INFONOTAVAILABLE ((HRESULT)0x8004105AL)
-
-
-
- #endif // __WSLERROR_H__
-