コード例 #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 ) );
}
コード例 #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 ) );
}
コード例 #3
0
ファイル: libewf_error.c プロジェクト: eaas-framework/xmount
/* 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 );
}