Initial fingerprint data representation ideas

This commit is contained in:
Daniel Drake
2007-10-08 18:24:29 +01:00
parent 59b73af909
commit b071f3cdb9
4 changed files with 63 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
struct fp_dscv_dev;
struct fp_dev;
struct fp_driver;
struct fp_print_data;
/* Device discovery */
struct fp_dscv_dev **fp_discover_devs(void);
@@ -39,6 +40,10 @@ const struct fp_driver *fp_dev_get_driver(struct fp_dev *dev);
const char *fp_driver_get_name(const struct fp_driver *drv);
const char *fp_driver_get_full_name(const struct fp_driver *drv);
/* Data handling */
void fp_print_data_free(struct fp_print_data *data);
/* Library */
int fp_init(void);
#endif