Synopsis
typedef struct {
  libmem_driver_write_fn_t write;
  libmem_driver_fill_fn_t fill;
  libmem_driver_erase_fn_t erase;
  libmem_driver_lock_fn_t lock;
  libmem_driver_unlock_fn_t unlock;
  libmem_driver_flush_fn_t flush;
} _libmem_driver_functions_t;
Description

_libmem_driver_functions_t is a structure containing pointers to a LIBMEM driver's functions.

Member Description
write A pointer to a LIBMEM driver's write function
fill A pointer to a LIBMEM driver's fill function
erase A pointer to a LIBMEM driver's erase function
lock A pointer to a LIBMEM driver's lock function
unlock A pointer to a LIBMEM driver's unlock function
flush A pointer to a LIBMEM driver's flush function