Files
libyal-libexe/libexe/libexe_error.h
T
Joachim Metz 5600a16794 Code clean up.
2016-03-28 07:09:00 +02:00

75 lines
1.7 KiB
C

/*
* Error functions
*
* Copyright (C) 2011-2016, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This software is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software 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 Lesser General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined( _LIBEXE_INTERNAL_ERROR_H )
#define _LIBEXE_INTERNAL_ERROR_H
#include <common.h>
#include <file_stream.h>
#include <types.h>
#if !defined( HAVE_LOCAL_LIBEXE )
#include <libexe/error.h>
#endif
#include "libexe_extern.h"
#if defined( __cplusplus )
extern "C" {
#endif
#if !defined( HAVE_LOCAL_LIBEXE )
LIBEXE_EXTERN \
void libexe_error_free(
libexe_error_t **error );
LIBEXE_EXTERN \
int libexe_error_fprint(
libexe_error_t *error,
FILE *stream );
LIBEXE_EXTERN \
int libexe_error_sprint(
libexe_error_t *error,
char *string,
size_t size );
LIBEXE_EXTERN \
int libexe_error_backtrace_fprint(
libexe_error_t *error,
FILE *stream );
LIBEXE_EXTERN \
int libexe_error_backtrace_sprint(
libexe_error_t *error,
char *string,
size_t size );
#endif /* !defined( HAVE_LOCAL_LIBEXE ) */
#if defined( __cplusplus )
}
#endif
#endif /* !defined( _LIBEXE_INTERNAL_ERROR_H ) */