forcing empty parameter list with function(void) instead of unspecified parameter list with function()
git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@162 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
@@ -45,15 +45,15 @@ int sendToVICC(uint16_t size, const char* buffer);
|
||||
*/
|
||||
int recvFromVICC(char** buffer);
|
||||
|
||||
int vicc_eject();
|
||||
int vicc_init();
|
||||
int vicc_exit();
|
||||
int vicc_eject(void);
|
||||
int vicc_init(void);
|
||||
int vicc_exit(void);
|
||||
int vicc_transmit(int apdu_len, const char *apdu, char **rapdu);
|
||||
int vicc_getatr(char** atr);
|
||||
int vicc_present();
|
||||
int vicc_poweron();
|
||||
int vicc_poweroff();
|
||||
int vicc_reset();
|
||||
int vicc_present(void);
|
||||
int vicc_poweron(void);
|
||||
int vicc_poweroff(void);
|
||||
int vicc_reset(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user