mirror of
https://github.com/samba-team/samba.git
synced 2025-01-03 01:18:10 +03:00
027afd11ca
error codes & string descriptions are generated from http://msdn.microsoft.com/en-us/library/cc704587.aspx, additionally there is a function to return the error description from the error code, this function will also try to determine the error description associated with a W_ERROR code translated as a HRESULT. Signed-off-by: Noel Power <noel.power@suse.com> Reviewed-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
12 lines
364 B
Python
12 lines
364 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_LIBRARY('errors',
|
|
public_headers='error.h ntstatus.h doserr.h werror.h hresult.h',
|
|
header_path='core',
|
|
source='doserr.c errormap.c nterr.c errmap_unix.c hresult.c',
|
|
public_deps='talloc samba-util',
|
|
private_library=True
|
|
)
|
|
|