table of contents
        
      
      
    | libftxf(3) | Library Functions Manual | libftxf(3) | 
NAME¶
libftxf.h —
    Library to access the Transactional NTFS (TxF)
    format
SYNOPSIS¶
#include
    <libftxf.h>
Support functions
  
  const char *
  
  libftxf_get_version(void);
Error functions
  
  void
  
  libftxf_error_free(libftxf_error_t
    **error);
int
  
  libftxf_error_fprint(libftxf_error_t
    *error, FILE
    *stream);
int
  
  libftxf_error_sprint(libftxf_error_t
    *error, char
    *string, size_t
    size);
int
  
  libftxf_error_backtrace_fprint(libftxf_error_t
    *error, FILE
    *stream);
int
  
  libftxf_error_backtrace_sprint(libftxf_error_t
    *error, char
    *string, size_t
    size);
Record functions
  
  int
  
  libftxf_record_initialize(libftxf_record_t
    **txf_record,
    libftxf_error_t
  **error);
int
  
  libftxf_record_free(libftxf_record_t
    **txf_record,
    libftxf_error_t
  **error);
int
  
  libftxf_record_copy_from_byte_stream(libftxf_record_t
    *txf_record, const
    uint8_t *byte_stream,
    size_t byte_stream_size,
    libftxf_error_t
  **error);
DESCRIPTION¶
The
    libftxf_get_version()
    function is used to retrieve the library version.
RETURN VALUES¶
Most of the functions return NULL or -1 on error, dependent on the return type. For the actual return values see "libftxf.h".
ENVIRONMENT¶
None
FILES¶
None
BUGS¶
Please report bugs of any kind on the project issue tracker: https://github.com/libyal/libftxf/issues
AUTHOR¶
These man pages are generated from "libftxf.h".
COPYRIGHT¶
Copyright (C) 2011-2022, Joachim Metz <joachim.metz@gmail.com>.
This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
SEE ALSO¶
the libftxf.h include file
| April 2, 2019 | libftxf |