summaryrefslogtreecommitdiffstats
path: root/private/nw/nw16/drv/nwerror.h
blob: f369855ce56ac91cbee6cfa88cc1fa54d80de104 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*****************************************************************/
/**               Microsoft Windows for Workgroups              **/
/**           Copyright (C) Microsoft Corp., 1991-1992          **/
/*****************************************************************/

/* NWERROR.H -- Novell defined error return codes from Netware API
 *
 * History:
 *  03/16/93    vlads   Created
 *
 */

#ifndef _nwerror_h_
#define _nwerror_h_


#define NWSC_SUCCESS            0x00
#define NWSC_SERVEROUTOFMEMORY  0x96
#define NWSC_NOSUCHVOLUME       0x98   // Volume does not exist
#define NWSC_BADDIRECTORYHANDLE 0x9b
#define NWSC_NOSUCHPATH         0x9c
#define NWSC_NOJOBRIGHTS        0xd6
#define NWSC_EXPIREDPASSWORD    0xdf
#define NWSC_NOSUCHSEGMENT      0xec   // Segment does not exist
#define NWSC_INVALIDNAME        0xef
#define NWSC_NOWILDCARD         0xf0   // Wildcard not allowed
#define NWSC_NOPERMBIND         0xf1   // Invalid bindery security

#define NWSC_ALREADYATTACHED    0xf8   // Already attached to file server
#define NWSC_NOPERMREADPROP     0xf9   // No property read privelege
#define NWSC_NOFREESLOTS        0xf9   // No free connection slots at server
#define NWSC_NOMORESLOTS        0xfa   // No more server slots
#define NWSC_NOSUCHPROPERTY     0xfb   // Property does not exist
#define NWSC_UNKNOWN_REQUEST    0xfb    // Invalid NCP number
#define NWSC_NOSUCHOBJECT       0xfc   // End of Scan Bindery Object service
                                       // No such object
#define NWSC_UNKNOWNSERVER      0xfc   // Unknown file server
#define NWSC_SERVERBINDERYLOCKED    0xfe   // Server bindery locked
#define NWSC_BINDERYFAILURE     0xff   // Bindery failure
#define NWSC_ILLEGALSERVERADDRESS 0xff   // No response from server (illegal server address)
#define NWSC_NOSUCHCONNECTION   0xff   // Connection ID does not exist


typedef WORD   NW_STATUS;

#endif