+/**
+ Error values returned by wxProtocol.
+*/
+enum wxProtocolError
+{
+ wxPROTO_NOERR = 0, //!< No error.
+ wxPROTO_NETERR, //!< A generic network error occurred.
+ wxPROTO_PROTERR, //!< An error occurred during negotiation.
+ wxPROTO_CONNERR, //!< The client failed to connect the server.
+ wxPROTO_INVVAL, //!< Invalid value.
+ wxPROTO_NOHNDLR, //!< Not currently used.
+ wxPROTO_NOFILE, //!< The remote file doesn't exist.
+ wxPROTO_ABRT, //!< Last action aborted.
+ wxPROTO_RCNCT, //!< An error occurred during reconnection.
+ wxPROTO_STREAMING //!< Someone tried to send a command during a transfer.
+};
+