diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-09-19 01:03:20 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-09-19 01:03:20 -0700 |
commit | 9263b22cb295ae5eefa3bf25e35873b718966325 (patch) | |
tree | 5a513a8efecee9f7a5dbcce8a335eae0e63a06db /sesman/chansrv/smartcard.h | |
parent | d926a5becd9814f55025a58fb4bb9263c6a24dbb (diff) | |
download | xrdp-proprietary-9263b22cb295ae5eefa3bf25e35873b718966325.tar.gz xrdp-proprietary-9263b22cb295ae5eefa3bf25e35873b718966325.zip |
chansrv: work on smartcard
Diffstat (limited to 'sesman/chansrv/smartcard.h')
-rw-r--r-- | sesman/chansrv/smartcard.h | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/sesman/chansrv/smartcard.h b/sesman/chansrv/smartcard.h index 44d4fcbc..c763db31 100644 --- a/sesman/chansrv/smartcard.h +++ b/sesman/chansrv/smartcard.h @@ -73,17 +73,14 @@ int APP_CC scard_get_wait_objs(tbus *objs, int *count, int *timeout); int APP_CC scard_check_wait_objs(void); int APP_CC scard_init(void); int APP_CC scard_deinit(void); -int APP_CC scard_send_irp_establish_context(struct trans *con, int scope); -int APP_CC scard_send_irp_release_context(struct trans *con, tui32 context); -int APP_CC scard_send_irp_list_readers(struct trans *con, tui32 context, int wide); - -int APP_CC scard_send_irp_get_status_change(struct trans *con, tui32 context, - int wide, tui32 timeout, - tui32 num_readers, READER_STATE* rsa); - -int APP_CC scard_send_irp_connect(struct trans *con, tui32 context, int wide, - READER_STATE* rs); - +int APP_CC scard_send_establish_context(struct trans *con, int scope); +int APP_CC scard_send_release_context(struct trans *con, tui32 context); +int APP_CC scard_send_list_readers(struct trans *con, tui32 context, int wide); +int APP_CC scard_send_get_status_change(struct trans *con, tui32 context, + int wide, tui32 timeout, + tui32 num_readers, READER_STATE* rsa); +int APP_CC scard_send_connect(struct trans *con, tui32 context, int wide, + READER_STATE* rs); int APP_CC scard_send_begin_transaction(struct trans *con, tui32 sc_handle); int APP_CC scard_send_end_transaction(struct trans *con, tui32 sc_handle); int APP_CC scard_send_status(struct trans *con, int wide, tui32 sc_handle); |