added dummy libsimaka_init() function needed for integrity testing

This commit is contained in:
Andreas Steffen 2011-11-08 21:18:40 +01:00
parent acb92cb44c
commit 4182d7a58d
2 changed files with 13 additions and 0 deletions

View File

@ -52,6 +52,14 @@ struct private_simaka_manager_t {
rwlock_t *lock;
};
/**
* Described in header.
*/
void libsimaka_init(void)
{
/* empty */
}
METHOD(simaka_manager_t, add_card, void,
private_simaka_manager_t *this, simaka_card_t *card)
{

View File

@ -278,6 +278,11 @@ struct simaka_manager_t {
void (*destroy)(simaka_manager_t *this);
};
/**
* Dummy libsimaka initialization function needed for integrity test
*/
void libsimaka_init(void);
/**
* Create an SIM/AKA manager to handle multiple (U)SIM cards/providers.
*