FreeCalypso > hg > freecalypso-hwlab
view uicc/exit.c @ 155:804a5b0797c6
fc-simtool: grcard2-set-puk[12] commands implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 07 Feb 2021 02:34:33 +0000 |
parents | f691a19f191d |
children |
line wrap: on
line source
#include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <pcsclite.h> #include <winscard.h> #include "globals.h" good_exit() { SCardDisconnect(hCard, SCARD_UNPOWER_CARD); SCardReleaseContext(hContext); exit(0); } error_exit() { SCardDisconnect(hCard, SCARD_UNPOWER_CARD); SCardReleaseContext(hContext); exit(1); }