2006-03-25 21:47:47 +03:00
/*
Unix SMB / CIFS implementation .
Error handling code
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2006-03-25 21:47:47 +03:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2006-03-25 21:47:47 +03:00
*/
# ifndef _SAMBA_ERROR_H_
# define _SAMBA_ERROR_H_
2007-09-24 01:35:03 +04:00
# include "libcli/util/werror.h"
2006-03-25 21:47:47 +03:00
# include "libcli/util/doserr.h"
2007-09-24 01:35:03 +04:00
# include "libcli/util/ntstatus.h"
2014-04-07 17:46:32 +04:00
# include "libcli/util/hresult.h"
2007-09-24 01:35:03 +04:00
/*****************************************************************************
convert a NT status code to a dos class / code
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void ntstatus_to_dos ( NTSTATUS ntstatus , uint8_t * eclass , uint32_t * ecode ) ;
/*****************************************************************************
convert a WERROR to a NT status32 code
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS werror_to_ntstatus ( WERROR error ) ;
/*****************************************************************************
convert a NTSTATUS to a WERROR
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
WERROR ntstatus_to_werror ( NTSTATUS error ) ;
/*********************************************************************
Map an NT error code from a Unix error code .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2011-06-20 08:55:32 +04:00
NTSTATUS map_nt_error_from_unix_common ( int unix_error ) ;
2007-09-24 01:35:03 +04:00
2011-03-19 02:45:56 +03:00
NTSTATUS nt_status_squash ( NTSTATUS nt_status ) ;
2011-01-27 00:17:43 +03:00
/*****************************************************************************
convert a Unix error to a WERROR
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
WERROR unix_to_werror ( int unix_error ) ;
2006-03-25 21:47:47 +03:00
# endif /* _SAMBA_ERROR_H */