diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-09-14 12:57:34 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-09-14 12:57:34 -0700 |
commit | edf483ecb66eff4cc378ea4c3ebba3410947ebe7 (patch) | |
tree | c79f8af774a156bda31955ee4f1aa582aff0f46c /sesman/chansrv/smartcard_pcsc.h | |
parent | 215956353fa2b122f7b75a9e344138ab61d4b594 (diff) | |
download | xrdp-proprietary-edf483ecb66eff4cc378ea4c3ebba3410947ebe7.tar.gz xrdp-proprietary-edf483ecb66eff4cc378ea4c3ebba3410947ebe7.zip |
chansrv: work on smartcard
Diffstat (limited to 'sesman/chansrv/smartcard_pcsc.h')
-rw-r--r-- | sesman/chansrv/smartcard_pcsc.h | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/sesman/chansrv/smartcard_pcsc.h b/sesman/chansrv/smartcard_pcsc.h index 1c8c6d7b..ef1ccd68 100644 --- a/sesman/chansrv/smartcard_pcsc.h +++ b/sesman/chansrv/smartcard_pcsc.h @@ -24,15 +24,23 @@ #ifndef _SMARTCARD_PCSC_H #define _SMARTCARD_PCSC_H -int APP_CC scard_pcsc_get_wait_objs(tbus *objs, int *count, int *timeout); -int APP_CC scard_pcsc_check_wait_objs(void); -int APP_CC scard_pcsc_init(void); -int APP_CC scard_pcsc_deinit(void); - -int APP_CC scard_function_establish_context_return(struct trans *con, int context); - -int APP_CC scard_function_list_readers_return(struct trans *con, - struct stream *in_s, - int len); +int APP_CC +scard_pcsc_get_wait_objs(tbus *objs, int *count, int *timeout); +int APP_CC +scard_pcsc_check_wait_objs(void); +int APP_CC +scard_pcsc_init(void); +int APP_CC +scard_pcsc_deinit(void); +int APP_CC +scard_function_establish_context_return(struct trans *con, int context); +int APP_CC +scard_function_list_readers_return(struct trans *con, + struct stream *in_s, + int len); +int APP_CC +scard_function_get_status_change_return(struct trans *con, + struct stream *in_s, + int len); #endif /* end #ifndef _SMARTCARD_PCSC_H */ |