Files
vsmartcard/TCardEmulator/inc/tcardemulator.h
Jan-Christopher Pien 9c758ffda0 Authentication for ACardEmulator/TCardEmulator
secure sending and with high priority
2016-11-30 08:29:37 +01:00

23 lines
529 B
C

#ifndef __tcardemulator_H__
#define __tcardemulator_H__
#define LOG_TAG "tcardemulator"
#if !defined(PACKAGE)
#define PACKAGE "com.vsmartcard.tcardemulator"
#endif
#include <stddef.h>
#include <glib.h>
#include <nfc.h>
#include <glib.h>
void initialize_sap();
gboolean find_peers();
gboolean request_service_connection(void);
gboolean terminate_service_connection(void);
gboolean send_data(nfc_se_h nfc_handle, void *message, unsigned int message_len);
GSList* request_installed_aids();
#endif /* __tcardemulator_H__ */