diff options
author | Tim Potter <tpot@samba.org> | 2001-08-13 05:26:33 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-08-13 05:26:33 +0000 |
commit | 432dbf7e24d40144282f307e3c279b62f92af88f (patch) | |
tree | a44a9f9c1af0e51034921f876e92fa30426d5f31 /source3/include/doserr.h | |
parent | e7630562c98c1bc9f3796365df9be58c9bd9c382 (diff) | |
download | samba-432dbf7e24d40144282f307e3c279b62f92af88f.tar.gz samba-432dbf7e24d40144282f307e3c279b62f92af88f.tar.xz samba-432dbf7e24d40144282f307e3c279b62f92af88f.zip |
Moved across definition of dos error types from smb.h to doserr.h
(This used to be commit 6c0dab85025dd7df9415edd627349fa8f1230de3)
Diffstat (limited to 'source3/include/doserr.h')
-rw-r--r-- | source3/include/doserr.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/include/doserr.h b/source3/include/doserr.h index 6e3ab911734..8043d3b372d 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -25,6 +25,13 @@ #ifndef _DOSERR_H #define _DOSERR_H +/* Error classes */ + +#define ERRDOS 0x01 /* Error is from the core DOS operating system set. */ +#define ERRSRV 0x02 /* Error is generated by the server network file manager.*/ +#define ERRHRD 0x03 /* Error is an hardware error. */ +#define ERRCMD 0xFF /* Command was not in the "SMB" format. */ + /* SMB X/Open error codes for the ERRDOS error class */ #define ERRsuccess 0 /* No error */ #define ERRbadfunc 1 /* Invalid function (or system call) */ |