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 >
Wrap
Text File
|
1994-08-02
|
3KB
|
69 lines
/*
****************************************************************************
*
* Program Name: Storage Management Services Utility Library Error Codes
*
* Filename: smsuterr.h
*
* Date Created: March 4, 1992
*
* Version: 3.2
*
* Date Modified:
*
* Modifications:
*
* Comments: Error numbers for SMS Utility Library
* Prefix: FFFB
*
* (C) Unpublished Copyright of Novell, Inc. All Rights Reserved.
*
* No part of this file may be duplicated, revised, translated, localized or
* modified in any manner or compiled, linked or uploaded or downloaded to or
* from any computer system without the prior written consent of Novell, Inc.
*
****************************************************************************
*/
#ifndef _SMSUTERR_H_INCLUDED /* smsuterr.h header latch */
#define _SMSUTERR_H_INCLUDED
#define NWSMUT_ERROR_CODE(err) (0xFFFB0000L | err)
#define NWSMUT_BEGIN_ERROR_CODES NWSMUT_ERROR_CODE(0xFFFF)
#define NWSMUT_INVALID_HANDLE NWSMUT_ERROR_CODE(0xFFFF)
/* Handle is tagged INVALID or ptr is NULL */
#define NWSMUT_INVALID_OFFSET_TO_END NWSMUT_ERROR_CODE(0xFFFE)
/* The OffsetToEnd field did not offset to the correct end */
/* field */
#define NWSMUT_INVALID_PARAMETER NWSMUT_ERROR_CODE(0xFFFD)
/* One or more of the paremeters is NULL or invalid */
#define NWSMUT_NO_MORE_NAMES NWSMUT_ERROR_CODE(0xFFFC)
/* No more entries in list or nameSpace type does not exist*/
#define NWSMUT_OUT_OF_MEMORY NWSMUT_ERROR_CODE(0xFFFB)
/* Server out of memory or memory allocation failed */
#define NWSMUT_BUFFER_OVERFLOW NWSMUT_ERROR_CODE(0xFFFA)
/* Field identifier buffer overflow */
#define NWSMUT_BUFFER_UNDERFLOW NWSMUT_ERROR_CODE(0xFFF0)
/* Field identifier buffer underflow */
#define NWSMUT_INVALID_FIELD_ID NWSMUT_ERROR_CODE(0xFFF9)
/* Invalid field identifier encountered */
#define NWSMUT_INVALID_MESSAGE_NUMBER NWSMUT_ERROR_CODE(0xFFF8)
/* Invalid message number encountered */
#define NWSMUT_END_ERROR_CODES NWSMUT_ERROR_CODE(0xFFF8)
#endif /* smsuterr.h header latch */
/***************************************************************************/