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

  1. /*    
  2. ****************************************************************************
  3. *
  4. * Program Name:   Storage Management Services Utility Library Error Codes
  5. *
  6. * Filename:       smsuterr.h
  7. *
  8. * Date Created:   March 4, 1992
  9. *
  10. * Version:        3.2
  11. *
  12. * Date Modified: 
  13. *
  14. * Modifications:
  15. *
  16. * Comments:       Error numbers for SMS Utility Library
  17. *                 Prefix:   FFFB
  18. *
  19. * (C) Unpublished Copyright of Novell, Inc.  All Rights Reserved.
  20. *
  21. * No part of this file may be duplicated, revised, translated, localized or
  22. * modified in any manner or compiled, linked or uploaded or downloaded to or
  23. * from any computer system without the prior written consent of Novell, Inc.
  24. *
  25. ****************************************************************************
  26. */
  27.  
  28. #ifndef _SMSUTERR_H_INCLUDED      /* smsuterr.h header latch */
  29. #define _SMSUTERR_H_INCLUDED
  30.  
  31.     
  32. #define NWSMUT_ERROR_CODE(err)           (0xFFFB0000L | err)
  33.     
  34. #define NWSMUT_BEGIN_ERROR_CODES          NWSMUT_ERROR_CODE(0xFFFF)
  35.  
  36. #define NWSMUT_INVALID_HANDLE             NWSMUT_ERROR_CODE(0xFFFF) 
  37.    /* Handle is tagged INVALID or ptr is NULL                 */
  38.     
  39. #define NWSMUT_INVALID_OFFSET_TO_END      NWSMUT_ERROR_CODE(0xFFFE) 
  40.    /* The OffsetToEnd field did not offset to the correct end */
  41.    /* field                                                   */
  42.    
  43. #define NWSMUT_INVALID_PARAMETER          NWSMUT_ERROR_CODE(0xFFFD) 
  44.    /* One or more of the paremeters is NULL or invalid        */
  45.    
  46. #define NWSMUT_NO_MORE_NAMES              NWSMUT_ERROR_CODE(0xFFFC) 
  47.    /* No more entries in list or nameSpace type does not exist*/
  48.    
  49. #define NWSMUT_OUT_OF_MEMORY              NWSMUT_ERROR_CODE(0xFFFB) 
  50.    /* Server out of memory or memory allocation failed        */
  51.    
  52. #define NWSMUT_BUFFER_OVERFLOW            NWSMUT_ERROR_CODE(0xFFFA) 
  53.    /* Field identifier buffer overflow                        */
  54.     
  55. #define NWSMUT_BUFFER_UNDERFLOW           NWSMUT_ERROR_CODE(0xFFF0) 
  56.    /* Field identifier buffer underflow                       */
  57.     
  58. #define NWSMUT_INVALID_FIELD_ID           NWSMUT_ERROR_CODE(0xFFF9) 
  59.    /* Invalid field identifier encountered                    */
  60.     
  61. #define NWSMUT_INVALID_MESSAGE_NUMBER     NWSMUT_ERROR_CODE(0xFFF8) 
  62.    /* Invalid message number encountered                      */
  63.  
  64. #define NWSMUT_END_ERROR_CODES            NWSMUT_ERROR_CODE(0xFFF8) 
  65.  
  66. #endif                            /* smsuterr.h header latch */
  67. /***************************************************************************/
  68.  
  69.