diff options
Diffstat (limited to 'source3/include/doserr.h')
-rw-r--r-- | source3/include/doserr.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/include/doserr.h b/source3/include/doserr.h index bdb7da5956..dc5bd0414a 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -158,4 +158,16 @@ #define WERR_PRINTER_DRIVER_IN_USE W_ERROR(3001) #define WERR_STATUS_MORE_ENTRIES W_ERROR(0x0105) +/* DFS errors */ + +#ifndef NERR_BASE +#define NERR_BASE (2100) +#endif + +#define WERR_DFS_NO_SUCH_VOL W_ERROR(NERR_BASE+562) +#define WERR_DFS_NO_SUCH_SHARE W_ERROR(NERR_BASE+565) +#define WERR_DFS_NO_SUCH_SERVER W_ERROR(NERR_BASE+573) +#define WERR_DFS_INTERNAL_ERROR W_ERROR(NERR_BASE+590) +#define WERR_DFS_CANT_CREATE_JUNCT W_ERROR(NERR_BASE+569) + #endif /* _DOSERR_H */ |