home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / usms1.exe / SMSTSERR.H < prev    next >
Text File  |  1994-08-02  |  20KB  |  418 lines

  1. /*    
  2. ****************************************************************************
  3. *
  4. * Program Name:      Storage Management Services TSAPI Error Codes
  5. *
  6. * modname: smstserr.h     version: 1.8     date: 08/02/94
  7. * PVCS          $Revision$    $date$
  8. *
  9. * Date Created:      March 2, 1992
  10. *
  11. * Version:           3.2
  12. *
  13. * Date Modified: 
  14. *
  15. * Modifications between 3.11c and 3.20a:
  16. *
  17. *                    The following codes were added
  18. *                    NWSM_UNSUPPORTED_FUNCTION
  19. *
  20. *                    The following codes were deleted
  21. *                    NWSM_DATA_REQUESTOR_NOT_FOUND
  22. *                    NWSM_DATA_REQUESTOR_NOT_RGSTRD
  23. *                    NWSM_INVALID_SMSP_FUNCTION
  24. *                    NWSM_NO_DATA_REQUESTORS_FOUND
  25. *
  26. *                    The following codes were changed:
  27. *        NWSM_                             -> NWSMTS_
  28. *        NWSMTS_EXPECTING_DATA_STREAM_SIZE -> NWSMTS_EXPECTING_DATA_STREAM_SZ
  29. *        NWSMTS_EXPIRED_PASSWORD_NO_GRACE  -> NWSMTS_EXPIRED_PASSWORD_NO_GRAC
  30. *        NWSMTS_INVALID_CONNECTION_HANDLE  -> NWSMTS_INVALID_CONNECTION_HANDL
  31. *        NWSMTS_INVALID_RETURN_NAME_SPACE  -> NWSMTS_INVALID_RETURN_NAME_SPAC
  32. *        NWSMTS_NO_RESOURCE_READ_PRIVILEGE -> NWSMTS_NO_RESOURCE_READ_PRIVILE
  33. *        NWSMTS_TRANSPORT_PACKET_SIZE_ERR  -> NWSMTS_TRANSPORT_PACKET_SIZE_ER
  34. *
  35. * Comments:          Error numbers for TSAPIs
  36. *                    Prefix:   FFFD
  37. *
  38. * (C) Unpublished Copyright of Novell, Inc.  All Rights Reserved.
  39. *
  40. * No part of this file may be duplicated, revised, translated, localized or
  41. * modified in any manner or compiled, linked or uploaded or downloaded to or
  42. * from any computer system without the prior written consent of Novell, Inc.
  43. *
  44. ****************************************************************************
  45. */
  46.  
  47. #ifndef _SMSTSERR_H_INCLUDED      /* smstserr.h header latch */
  48. #define _SMSTSERR_H_INCLUDED
  49.  
  50.  
  51. #define NWSMTS_AUX_ERROR_RANGE            0xFFFA0000L
  52.  
  53. #define NWSMTS_AUX_ERROR_CODE(err)       (0xFFFA0000L | err)
  54. #define NWSMTS_ERROR_CODE(err)           (0xFFFD0000L | err)
  55. #define NWSMTS_BEGIN_ERROR_CODES          NWSMTS_ERROR_CODE(0xFFFF)
  56.  
  57. #define NWSMTS_ACCESS_DENIED              NWSMTS_ERROR_CODE(0xFFFF) 
  58.    /* Invalid user Name or authentication                     */
  59.  
  60. #define NWSMTS_BINDERY_OBJECT_NAME_ERR    NWSMTS_ERROR_CODE(0xFFFE) 
  61.    /* Unable to get bindery object name                       */
  62.  
  63. #define NWSMTS_BUFFER_UNDERFLOW           NWSMTS_ERROR_CODE(0xFFFD) 
  64.    /* Buffer underflow, unable to get entire field            */
  65.  
  66. #define NWSMTS_CANT_ALLOC_DIR_HANDLE      NWSMTS_ERROR_CODE(0xFFFC) 
  67.    /* Cannot allocate a directory handle                      */
  68.  
  69. #define NWSMTS_CLOSE_BINDERY_ERROR        NWSMTS_ERROR_CODE(0xFFFB) 
  70.    /* Cannot close the bindery                                */
  71.  
  72. #define NWSMTS_CREATE_DIR_ENTRY_ERR       NWSMTS_ERROR_CODE(0xFFFA) 
  73.    /* Cannot create directory entry                           */
  74.  
  75. #define NWSMTS_CREATE_ERROR               NWSMTS_ERROR_CODE(0xFFF9) 
  76.    /* Cannot create a file                                    */
  77.  
  78. #define NWSMTS_DATA_SET_ALREADY_EXISTS    NWSMTS_ERROR_CODE(0xFFF8) 
  79.    /* Data set name is already in use                         */
  80.  
  81. #define NWSMTS_DATA_SET_EXCLUDED          NWSMTS_ERROR_CODE(0xFFF7) 
  82.    /* The Data Set was excluded by the Selection List         */
  83.  
  84. #define NWSMTS_DATA_SET_EXECUTE_ONLY      NWSMTS_ERROR_CODE(0xFFF6) 
  85.    /* Cannot open an execute only file                        */
  86.  
  87. #define NWSMTS_DATA_SET_IN_USE            NWSMTS_ERROR_CODE(0xFFF5) 
  88.    /* Data set is currently in use and cannot be accessed     */
  89.  
  90. #define NWSMTS_DATA_SET_IS_OLDER          NWSMTS_ERROR_CODE(0xFFF4) 
  91.    /* The target data set is newer the one on the media, the  */
  92.    /* data set will not be restored                           */
  93.  
  94. #define NWSMTS_DATA_SET_IS_OPEN           NWSMTS_ERROR_CODE(0xFFF3) 
  95.    /* Attempt to open a data set when one is open or to alter */
  96.    /* a scan when a data set is open                          */
  97.  
  98. #define NWSMTS_DATA_SET_NOT_FOUND         NWSMTS_ERROR_CODE(0xFFF2) 
  99.    /* No data sets found                                      */
  100.  
  101. #define NWSMTS_DELETE_ERR                 NWSMTS_ERROR_CODE(0xFFF1) 
  102.    /* Error deleting data set                                 */
  103.  
  104. #define NWSMTS_EXPECTING_HEADER           NWSMTS_ERROR_CODE(0xFFF0) 
  105.    /* Processing a Record/Subrecord and unable to find the    */
  106.    /* HEADER Field                                            */
  107.  
  108. #define NWSMTS_EXPECTING_TRAILER          NWSMTS_ERROR_CODE(0xFFEF) 
  109.    /* Processing a Record/Subrecord and unable to find the    */
  110.    /* TRAILER Field                                           */
  111.  
  112. #define NWSMTS_GET_BIND_OBJ_NAME_ERR      NWSMTS_ERROR_CODE(0xFFEE) 
  113.    /* Unable to get bindery object name                       */
  114.  
  115. #define NWSMTS_GET_DATA_STREAM_NAME_ERR   NWSMTS_ERROR_CODE(0xFFED) 
  116.    /* Unable to get data stream name                          */
  117.  
  118. #define NWSMTS_GET_ENTRY_INDEX_ERR        NWSMTS_ERROR_CODE(0xFFEC) 
  119.    /* Unable to get the entry index                           */
  120.  
  121. #define NWSMTS_GET_NAME_SPACE_ENTRY_ERR   NWSMTS_ERROR_CODE(0xFFEB) 
  122.    /* Unable to get name space entry name                     */
  123.  
  124. #define NWSMTS_GET_NAME_SPACE_SIZE_ERR    NWSMTS_ERROR_CODE(0xFFEA) 
  125.    /* Unable to get name space size information               */
  126.  
  127. #define NWSMTS_GET_SERVER_INFO_ERR        NWSMTS_ERROR_CODE(0xFFE9) 
  128.    /* Unable to get file server information                   */
  129.  
  130. #define NWSMTS_GET_VOL_NAME_SPACE_ERR     NWSMTS_ERROR_CODE(0xFFE8) 
  131.    /* Unable to get volume supported name space information   */
  132.  
  133. #define NWSMTS_INVALID_CONNECTION_HANDL   NWSMTS_ERROR_CODE(0xFFE7) 
  134.    /* An invalid connection handle was passed                 */
  135.  
  136. #define NWSMTS_INVALID_DATA               NWSMTS_ERROR_CODE(0xFFE6) 
  137.    /* Invalid Data Set data                                   */
  138.  
  139. #define NWSMTS_INVALID_DATA_SET_HANDLE    NWSMTS_ERROR_CODE(0xFFE5) 
  140.    /* Data set handle is invalid                              */
  141.  
  142. #define NWSMTS_INVALID_DATA_SET_NAME      NWSMTS_ERROR_CODE(0xFFE4) 
  143.    /* Data set name is invalid                                */
  144.  
  145. #define NWSMTS_INVALID_DATA_SET_TYPE      NWSMTS_ERROR_CODE(0xFFE3) 
  146.    /* Data set type is invalid                                */
  147.  
  148. #define NWSMTS_INVALID_HANDLE             NWSMTS_ERROR_CODE(0xFFE2) 
  149.    /* Handle is tagged INVALID or ptr is NIL                  */
  150.  
  151. #define NWSMTS_INVALID_NAME_SPACE_TYPE    NWSMTS_ERROR_CODE(0xFFE0) 
  152.    /* Name space type does not exist or is invalid            */
  153.  
  154. #define NWSMTS_INVALID_OBJECT_ID          NWSMTS_ERROR_CODE(0xFFDF) 
  155.    /* The object id/name backed up doesn't match the current  */
  156.    /* object id/name                                          */
  157.  
  158. #define NWSMTS_INVALID_OPEN_MODE_TYPE     NWSMTS_ERROR_CODE(0xFFDE) 
  159.    /* Open mode option is out of range (0xi.e. <0 or >23)     */
  160.  
  161. #define NWSMTS_INVALID_PARAMETER          NWSMTS_ERROR_CODE(0xFFDD) 
  162.    /* One or more of the paremeters is NULL or invalid        */
  163.  
  164. #define NWSMTS_INVALID_PATH               NWSMTS_ERROR_CODE(0xFFDC) 
  165.    /* An invalid path was used                                */
  166.  
  167. #define NWSMTS_INVALID_SCAN_TYPE          NWSMTS_ERROR_CODE(0xFFDB) 
  168.    /* Scan type is out of range (0xi.e. <0 or >31)            */
  169.  
  170. #define NWSMTS_INVALID_SEL_LIST_ENTRY     NWSMTS_ERROR_CODE(0xFFDA) 
  171.    /* An invalid selection list entry was passed              */
  172.  
  173. #define NWSMTS_INVALID_SELECTION_TYPE     NWSMTS_ERROR_CODE(0xFFD9) 
  174.    /* Selection type is out of range (0xi.e. <0 or >31)       */
  175.  
  176. #define NWSMTS_INVALID_SEQUENCE_NUMBER    NWSMTS_ERROR_CODE(0xFFD8) 
  177.    /* The sequence number is invalid                          */
  178.  
  179. #define NWSMTS_LOGIN_DENIED               NWSMTS_ERROR_CODE(0xFFD7) 
  180.    /* Login Denied                                            */
  181.  
  182. #define NWSMTS_LOGOUT_ERROR               NWSMTS_ERROR_CODE(0xFFD6) 
  183.    /* Unable to logout                                        */
  184.  
  185. #define NWSMTS_NAME_SP_PATH_NOT_UPDATED   NWSMTS_ERROR_CODE(0xFFD5) 
  186.    /* The name space path has not been updated                */
  187.  
  188. #define NWSMTS_NOT_READY                  NWSMTS_ERROR_CODE(0xFFD4) 
  189.    /* The specified server is unable to service the request   */
  190.    /* at this time                                            */
  191.  
  192. #define NWSMTS_NO_CONNECTION              NWSMTS_ERROR_CODE(0xFFD3) 
  193.    /* Connection is invalid or does not exist                 */
  194.  
  195. #define NWSMTS_NO_MORE_DATA               NWSMTS_ERROR_CODE(0xFFD2) 
  196.    /* No more data exists                                     */
  197.  
  198. #define NWSMTS_NO_MORE_DATA_SETS          NWSMTS_ERROR_CODE(0xFFD1) 
  199.    /* There are no more data sets to be scanned               */
  200.  
  201. #define NWSMTS_NO_MORE_NAMES              NWSMTS_ERROR_CODE(0xFFD0) 
  202.    /* No more entries in list or nameSpace does not exist     */
  203.  
  204. #define NWSMTS_NO_SEARCH_PRIVILEGES       NWSMTS_ERROR_CODE(0xFFCF) 
  205.    /* No search privilege on client service                   */
  206.  
  207. #define NWSMTS_NO_SUCH_PROPERTY           NWSMTS_ERROR_CODE(0xFFCE) 
  208.    /* No Such Property                                        */
  209.  
  210. #define NWSMTS_OPEN_DATA_STREAM_ERR       NWSMTS_ERROR_CODE(0xFFCD) 
  211.    /* Unable to open a data stream                            */
  212.  
  213. #define NWSMTS_OPEN_ERROR                 NWSMTS_ERROR_CODE(0xFFCC) 
  214.    /* Can't open a file                                       */
  215.  
  216. #define NWSMTS_OPEN_MODE_TYPE_NOT_USED    NWSMTS_ERROR_CODE(0xFFCB) 
  217.    /* Open mode option is not used                            */
  218.  
  219. #define NWSMTS_OUT_OF_DISK_SPACE          NWSMTS_ERROR_CODE(0xFFCA) 
  220.    /* Can't restore, out of disk space                        */
  221.  
  222. #define NWSMTS_OUT_OF_MEMORY              NWSMTS_ERROR_CODE(0xFFC9) 
  223.    /* Server out of memory or memory allocation failed        */
  224.  
  225. #define NWSMTS_OVERFLOW                   NWSMTS_ERROR_CODE(0xFFC8) 
  226.    /* A UINT64 value has overflowed                           */
  227.  
  228. #define NWSMTS_READ_EA_ERR                NWSMTS_ERROR_CODE(0xFFC7) 
  229.    /* Unable to read extended attributes                      */
  230.  
  231. #define NWSMTS_READ_ERROR                 NWSMTS_ERROR_CODE(0xFFC6) 
  232.    /* Error reading a file                                    */
  233.  
  234. #define NWSMTS_RESOURCE_NAME_NOT_FOUND    NWSMTS_ERROR_CODE(0xFFC5) 
  235.    /* No resource name is found or all resource names have    */
  236.    /* been found                                              */
  237.  
  238. #define NWSMTS_SCAN_ERROR                 NWSMTS_ERROR_CODE(0xFFC4) 
  239.    /* Scan failed, probably due to an invalid path            */
  240.  
  241. #define NWSMTS_SCAN_FILE_ENTRY_ERR        NWSMTS_ERROR_CODE(0xFFC3) 
  242.    /* Unable to scan file entry information                   */
  243.  
  244. #define NWSMTS_SCAN_IN_PROGRESS           NWSMTS_ERROR_CODE(0xFFC2) 
  245.    /* Cannot alter resource list while scans are in progress  */
  246.  
  247. #define NWSMTS_SCAN_NAME_SPACE_ERR        NWSMTS_ERROR_CODE(0xFFC1) 
  248.    /* Unable to scan name space specific information          */
  249.  
  250. #define NWSMTS_SCAN_TRUSTEE_ERR           NWSMTS_ERROR_CODE(0xFFC0) 
  251.    /* Unable to scan for trustees                             */
  252.  
  253. #define NWSMTS_SCAN_TYPE_NOT_USED         NWSMTS_ERROR_CODE(0xFFBF) 
  254.    /* Scan type is not used                                   */
  255.  
  256. #define NWSMTS_SELECTION_TYPE_NOT_USED    NWSMTS_ERROR_CODE(0xFFBE) 
  257.    /* Selection type is not used                              */
  258.  
  259. #define NWSMTS_SET_FILE_INFO_ERR          NWSMTS_ERROR_CODE(0xFFBD) 
  260.    /* Unable to set file information                          */
  261.  
  262. #define NWSMTS_TRANSPORT_FAILURE          NWSMTS_ERROR_CODE(0xFFBC) 
  263.    /* The transport mechanism has failed                      */
  264.  
  265. #define NWSMTS_TRANSPORT_PACKET_SIZE_ER   NWSMTS_ERROR_CODE(0xFFBB) 
  266.    /* The read/write request exceeds 128K                     */
  267.  
  268. #define NWSMTS_TSA_NOT_FOUND              NWSMTS_ERROR_CODE(0xFFBA) 
  269.    /* Invalid or inactive TSA specified                       */
  270.  
  271. #define NWSMTS_UNSUPPORTED_FUNCTION       NWSMTS_ERROR_CODE(0xFFB9) 
  272.    /* The requested function is not supported by this TSA     */
  273.  
  274. #define NWSMTS_VALID_PARENT_HANDLE        NWSMTS_ERROR_CODE(0xFFB8) 
  275.    /* A valid parent handle is created                        */
  276.  
  277. #define NWSMTS_WRITE_EA_ERR               NWSMTS_ERROR_CODE(0xFFB7) 
  278.    /* Unable to write extended attribute(0xs)                 */
  279.  
  280. #define NWSMTS_WRITE_ERROR_SHORT          NWSMTS_ERROR_CODE(0xFFB6) 
  281.    /* Error writing to a file, didn't write full request      */
  282.  
  283. #define NWSMTS_WRITE_ERROR                NWSMTS_ERROR_CODE(0xFFB5) 
  284.    /* Error writing to a file                                 */
  285.  
  286. #define NWSMTS_REDIRECT_TRANSPORT         NWSMTS_ERROR_CODE(0xFFB4) 
  287.    /* Indicates reconnection requirement                      */
  288.  
  289. #define NWSMTS_MAX_CONNECTIONS            NWSMTS_ERROR_CODE(0xFFB3) 
  290.    /* All available connections to TSA are in use.            */
  291.  
  292. #define NWSMTS_COMPRESSION_CONFLICT       NWSMTS_ERROR_CODE(0xFFB2)
  293.    /* Attempt to put compressed data on non-compressed volume      */
  294.     
  295. #define NWSMTS_INTERNAL_ERROR             NWSMTS_ERROR_CODE(0xFFB1)
  296.    /* An internal TSA error occured, see error log for details      */
  297.  
  298. #define NWSMTS_INVALID_MESSAGE_NUMBER     NWSMTS_ERROR_CODE(0xFFB0)
  299. #define NWSMTS_END_ERROR_CODES            NWSMTS_ERROR_CODE(0xFFB0)
  300.  
  301.  
  302. #endif                            /* smstserr.h header latch */
  303. /***************************************************************************/
  304.  
  305. /* START BLOCK COMMENT
  306. **       #define NWSMTS_ACCT_LIMIT_EXCEEDED      NWSMTS_ERROR_CODE(0xFFFE) 
  307. #* Account Credit Limit Exceeded #/
  308. **       #define NWSMTS_ALREADY_CONNECTED        NWSMTS_ERROR_CODE(0xFFFD) 
  309. #* SME is currently connected to a TSA #/
  310. **       #define NWSMTS_DATA_SET_DETACHED        NWSMTS_ERROR_CODE(0xFFF5) 
  311. #* Data set is detached #/
  312. **       #define NWSMTS_DATA_SET_LOCKED          NWSMTS_ERROR_CODE(0xFFF0) 
  313. #* Read with data set locked #/
  314. **       #define NWSMTS_DATA_SET_READ_ONLY       NWSMTS_ERROR_CODE(0xFFEE) 
  315. #* Data set is read only #/
  316. **       #define NWSMTS_DIRECTORY_LOCKED         NWSMTS_ERROR_CODE(0xFFEC) 
  317. #* Directory Locked #/
  318. **       #define NWSMTS_DISK_MAP_ERROR           NWSMTS_ERROR_CODE(0xFFEB) 
  319. #* Disk mapping error or volume does not exist #/
  320. **       #define NWSMTS_EAS_NOT_SUPPORTED        NWSMTS_ERROR_CODE(0xFFEA) 
  321. #* Extended Attributes are not supported, this information will not be 
  322.    restored #/
  323. **       #define NWSMTS_EXCEED_MAX_LOGINS        NWSMTS_ERROR_CODE(0xFFE9) 
  324. #* Maximum Logins Exceeded - Login Denied #/
  325. **       #define NWSMTS_EXPECTING_BEGIN          NWSMTS_ERROR_CODE(0xFFE8) 
  326. #* Processing a Record/Subrecord and didn't find the BEGIN Field #/
  327. **       #define NWSMTS_EXPECTING_DATA_STREAM_SZ NWSMTS_ERROR_CODE(0xFFE7) 
  328. #* Processing a Data Stream Header and didn't find the Size Field #/
  329. **       #define NWSMTS_EXPECTING_END            NWSMTS_ERROR_CODE(0xFFE6) 
  330. #* Processing a Record/Subrecord and didn't find the END Field #/
  331. **       #define NWSMTS_EXPIRED_PASSWORD         NWSMTS_ERROR_CODE(0xFFE3) 
  332. #* Old Password #/
  333. **       #define NWSMTS_EXPIRED_PASSWORD_NO_GRAC NWSMTS_ERROR_CODE(0xFFE2) 
  334. #* Bad Password - No grace period #/
  335. **       #define NWSMTS_HARD_FAILURE             NWSMTS_ERROR_CODE(0xFFDA) 
  336. #* Hard Failure, Failure #/
  337. **       #define NWSMTS_ILLEGAL_WILD_CARD        NWSMTS_ERROR_CODE(0xFFD9) 
  338. #* Illegal Wild Card #/
  339. **       #define NWSMTS_INTRUDER_DETECTION_LOCK  NWSMTS_ERROR_CODE(0xFFD8) 
  340. #* Intruder Detection Lock #/
  341. **       #define NWSMTS_INVALID_BINDERY_SECURITY NWSMTS_ERROR_CODE(0xFFD7) 
  342. #* Invalid Bindery Security #/
  343. **       #define NWSMTS_INVALID_MODE             NWSMTS_ERROR_CODE(0xFFCF) 
  344. #* Open Mode setting is invalid #/
  345. **       #define NWSMTS_INVALID_RETURN_NAME_SPAC NWSMTS_ERROR_CODE(0xFFC9) 
  346. #* The returned name space type is invalid #/
  347. **       #define NWSMTS_INVALID_SCAN_PATTERN     NWSMTS_ERROR_CODE(0xFFC8) 
  348. #* Invalid scan pattern #/
  349. **       #define NWSMTS_INVALID_SET_FLAG         NWSMTS_ERROR_CODE(0xFFC4) 
  350. #* Set flag value is invalid #/
  351. **       #define NWSMTS_INVALID_STATION_NUMBER   NWSMTS_ERROR_CODE(0xFFC3) 
  352. #* Station number is invalid #/
  353. **       #define NWSMTS_INVALID_TS_TYPE          NWSMTS_ERROR_CODE(0xFFC2) 
  354. #* An invalid Transaction Set Type was passed to the TSA #/
  355. **       #define NWSMTS_IO_ERROR                 NWSMTS_ERROR_CODE(0xFFC1) 
  356. #* IO error #/
  357. **       #define NWSMTS_LOCK_ERROR               NWSMTS_ERROR_CODE(0xFFC0) 
  358. #* Lock Error #/
  359. **       #define NWSMTS_NEW_DATA_SET_NAME_EXISTS NWSMTS_ERROR_CODE(0xFFBC) 
  360. #* The specified new data set name already exists #/
  361. **       #define NWSMTS_NO_CONNECTION_TO_RELEASE NWSMTS_ERROR_CODE(0xFFB9) 
  362. #* SME is not connected to a TSA #/
  363. **       #define NWSMTS_NO_LOGIN_NO_ACCT_BALANCE NWSMTS_ERROR_CODE(0xFFB8) 
  364. #* Login Denied No account Balance #/
  365. **       #define NWSMTS_NO_MODIFY_PRIVILEGES     NWSMTS_ERROR_CODE(0xFFB7) 
  366. #* No modify privileges #/
  367. **       #define NWSMTS_NO_PROP_DELETE_PRIVILEGE NWSMTS_ERROR_CODE(0xFFB3) 
  368. #* No Property Delete Privilege #/
  369. **       #define NWSMTS_NO_READ_PRIVILEGES       NWSMTS_ERROR_CODE(0xFFB2) 
  370. #* No read privileges #/
  371. **       #define NWSMTS_NO_RENAME_PRIVILEGES     NWSMTS_ERROR_CODE(0xFFB1) 
  372. #* No data set name rename privileges #/
  373. **       #define NWSMTS_NO_RESOURCE_READ_PRIVILE NWSMTS_ERROR_CODE(0xFFB0) 
  374. #* No Resource Read Privilege #/
  375. **       #define NWSMTS_NO_SUCH_OBJECT           NWSMTS_ERROR_CODE(0xFFAE) 
  376. #* No Such Object #/
  377. **       #define NWSMTS_NO_SUCH_SEGMENT          NWSMTS_ERROR_CODE(0xFFAC) 
  378. #* No Such Segment SPX Terminated Poorly #/
  379. **       #define NWSMTS_NO_WILD_CARDS_ALLOWED    NWSMTS_ERROR_CODE(0xFFAB) 
  380. #* Wild cards exist in data set name #/
  381. **       #define NWSMTS_OUT_OF_SPACE             NWSMTS_ERROR_CODE(0xFFA5) 
  382. #* Not enough space to restore the data set #/
  383. **       #define NWSMTS_PASSWORD_NOT_UNIQUE      NWSMTS_ERROR_CODE(0xFFA3) 
  384. #* Password Is Not Unique #/
  385. **       #define NWSMTS_PROPERTY_EXISTS          NWSMTS_ERROR_CODE(0xFFA2) 
  386. #* Property Already Exists #/
  387. **       #define NWSMTS_RENAMING_ACROSS_VOLUME   NWSMTS_ERROR_CODE(0xFF9F) 
  388. #* Renaming not allowed across volumes #/
  389. **       #define NWSMTS_SET_DIR_ENTRY_ERR        NWSMTS_ERROR_CODE(0xFF96) 
  390. #* Unable to set the directory entry information #/
  391. **       #define NWSMTS_SET_FILE_ENTRY_ERR       NWSMTS_ERROR_CODE(0xFF95) 
  392. #* Unable to set the file entry information #/
  393. **       #define NWSMTS_SPX_CONN_TABLE_FULL      NWSMTS_ERROR_CODE(0xFF93) 
  394. #* Invalid Name SPX Connection Table Full #/
  395. **       #define NWSMTS_TARGET_NAME_NOT_FOUND    NWSMTS_ERROR_CODE(0xFF92) 
  396. #* No client name found #/
  397. **       #define NWSMTS_TARGET_SERVICE_NOT_FOUND NWSMTS_ERROR_CODE(0xFF91) 
  398. #* Invalid or inactive server/services specified #/
  399. **       #define NWSMTS_TERMINATE_BACKUP         NWSMTS_ERROR_CODE(0xFF90) 
  400. #* The Backup cannot continue #/
  401. **       #define NWSMTS_TIME_OUT_FAILURE         NWSMTS_ERROR_CODE(0xFF8F) 
  402. #* Connection time out failure #/
  403. **       #define NWSMTS_TSA_ALREADY_IN_USE       NWSMTS_ERROR_CODE(0xFF8C) 
  404. #* The TSA is being used by another engine #/
  405. **       #define NWSMTS_UNAUTHORIZED_LOGIN_TIME  NWSMTS_ERROR_CODE(0xFF8A) 
  406. #* Unauthorized Login Time #/
  407. **       #define NWSMTS_UNAUTHORIZED_LOG_STATION NWSMTS_ERROR_CODE(0xFF89) 
  408. #* Unauthorized Login Station #/
  409. **       #define NWSMTS_WRITE_TO_GROUP           NWSMTS_ERROR_CODE(0xFF83) 
  410. #* Write Property to Group error #/
  411.  
  412. END BLOCK COMMENT */
  413. /***************************************************************************/
  414.  
  415.  
  416.  
  417.  
  418.