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.c | |
| parent | d926a5becd9814f55025a58fb4bb9263c6a24dbb (diff) | |
| download | xrdp-proprietary-9263b22cb295ae5eefa3bf25e35873b718966325.tar.gz xrdp-proprietary-9263b22cb295ae5eefa3bf25e35873b718966325.zip | |
chansrv: work on smartcard
Diffstat (limited to 'sesman/chansrv/smartcard.c')
| -rw-r--r-- | sesman/chansrv/smartcard.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sesman/chansrv/smartcard.c b/sesman/chansrv/smartcard.c index b97ffca6..94c08ad4 100644 --- a/sesman/chansrv/smartcard.c +++ b/sesman/chansrv/smartcard.c @@ -285,7 +285,7 @@ scard_deinit(void) * *****************************************************************************/ int APP_CC -scard_send_irp_establish_context(struct trans *con, int scope) +scard_send_establish_context(struct trans *con, int scope) { IRP *irp; @@ -312,7 +312,7 @@ scard_send_irp_establish_context(struct trans *con, int scope) * Release a previously established Smart Card context *****************************************************************************/ int APP_CC -scard_send_irp_release_context(struct trans *con, tui32 context) +scard_send_release_context(struct trans *con, tui32 context) { IRP *irp; @@ -339,7 +339,7 @@ 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) +scard_send_list_readers(struct trans *con, tui32 context, int wide) { IRP *irp; @@ -371,9 +371,9 @@ scard_send_irp_list_readers(struct trans *con, tui32 context, int wide) * @param rsa array of READER_STATEs *****************************************************************************/ int APP_CC -scard_send_irp_get_status_change(struct trans *con, tui32 context, int wide, - tui32 timeout, tui32 num_readers, - READER_STATE* rsa) +scard_send_get_status_change(struct trans *con, tui32 context, int wide, + tui32 timeout, tui32 num_readers, + READER_STATE* rsa) { IRP *irp; @@ -403,8 +403,8 @@ scard_send_irp_get_status_change(struct trans *con, tui32 context, int wide, * @param wide TRUE if unicode string *****************************************************************************/ int APP_CC -scard_send_irp_connect(struct trans *con, tui32 context, int wide, - READER_STATE* rs) +scard_send_connect(struct trans *con, tui32 context, int wide, + READER_STATE* rs) { IRP *irp; |
