mirror of
https://github.com/libyal/libexe
synced 2026-06-08 15:29:55 +00:00
75 lines
1.7 KiB
C
75 lines
1.7 KiB
C
/*
|
|
* Error functions
|
|
*
|
|
* Copyright (C) 2011-2026, Joachim Metz <joachim.metz@gmail.com>
|
|
*
|
|
* Refer to AUTHORS for acknowledgements.
|
|
*
|
|
* This program 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 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 Lesser General Public License
|
|
* along with this program. If not, see <https://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 ) */
|
|
|