Esempio n. 1
0
/* Prints a descriptive string of the error to the stream
 * Returns the number of printed characters if successful or -1 on error
 */
int libodraw_error_fprint(
     libodraw_error_t *error,
     FILE *stream )
{
	return( liberror_error_fprint(
	         (liberror_error_t *) error,
	         stream ) );
}
Esempio n. 2
0
/* Prints a descriptive string of the error to the stream
 * Returns the number of printed characters if successful or -1 on error
 */
int libmapidb_error_fprint(
     libmapidb_error_t *error,
     FILE *stream )
{
	return( liberror_error_fprint(
	         (liberror_error_t *) error,
	         stream ) );
}
Esempio n. 3
0
/* Prints a descriptive string of the error to the stream
 */
void libewf_error_fprint(
      libewf_error_t *error,
      FILE *stream )
{
	liberror_error_fprint(
	 (liberror_error_t *) error,
	 stream );
}