00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef CHIPCARD_CLIENT_SWITCH_H
00015 #define CHIPCARD_CLIENT_SWITCH_H
00016
00017 #include <gwenhywfar/inherit.h>
00018 #include <chipcard/chipcard.h>
00019 #include <chipcard/client/client.h>
00020
00021 #ifdef __cplusplus
00022 extern "C" {
00023 #endif
00024
00032 CHIPCARD_API
00033 LC_CLIENT *LC_Client_new(const char *programName,
00034 const char *programVersion);
00035
00043 CHIPCARD_API
00044 LC_CLIENT *LC_Client_Factory(const char *resmgr,
00045 const char *programName,
00046 const char *programVersion);
00047
00048
00049 CHIPCARD_API
00050 void LC_Client_Version(int *major,
00051 int *minor,
00052 int *patchlevel,
00053 int *build);
00054
00055 #ifdef __cplusplus
00056 }
00057 #endif
00058
00059
00060 #endif
00061
00062
00063