Add function declaration + man entry

This commit is contained in:
pierre 2016-11-22 23:30:38 +01:00
parent df3165284d
commit 644c9bd214
2 changed files with 3 additions and 0 deletions

View file

@ -51,6 +51,7 @@ Mifare card manipulation library (libfreefare, \-lfreefare)
.Bd -literal .Bd -literal
enum freefare_tag_type { enum freefare_tag_type {
FELICA, FELICA,
MIFARE_MINI
MIFARE_CLASSIC_1K, MIFARE_CLASSIC_1K,
MIFARE_CLASSIC_4K, MIFARE_CLASSIC_4K,
MIFARE_DESFIRE, MIFARE_DESFIRE,

View file

@ -104,8 +104,10 @@ bool is_mifare_ultralightc_on_reader (nfc_device *device, nfc_iso14443a_info n
bool mifare_mini_taste (nfc_device *device, nfc_target target);
bool mifare_classic1k_taste (nfc_device *device, nfc_target target); bool mifare_classic1k_taste (nfc_device *device, nfc_target target);
bool mifare_classic4k_taste (nfc_device *device, nfc_target target); bool mifare_classic4k_taste (nfc_device *device, nfc_target target);
FreefareTag mifare_mini_tag_new (nfc_device *device, nfc_target target);
FreefareTag mifare_classic1k_tag_new (nfc_device *device, nfc_target target); FreefareTag mifare_classic1k_tag_new (nfc_device *device, nfc_target target);
FreefareTag mifare_classic4k_tag_new (nfc_device *device, nfc_target target); FreefareTag mifare_classic4k_tag_new (nfc_device *device, nfc_target target);
void mifare_classic_tag_free (FreefareTag tag); void mifare_classic_tag_free (FreefareTag tag);