Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef _FESCR_INCLUDE_H
00030 #define _FESCR_INCLUDE_H
00031
00032
00033 #if defined (_MSC_VER) || defined(__BORLANDC__) || defined(_CVI_)
00034 #ifdef FESCRDLL
00035 #define DLL_EXT_FUNC __declspec(dllexport) __stdcall
00036 #else
00037 #define DLL_EXT_FUNC __declspec(dllimport) __stdcall
00038 #endif
00039 #define FESCR_EXT_CALL __stdcall
00040 #define FESCR_CALL __cdecl
00041 #else
00042 #define FESCR_EXT_CALL
00043 #define DLL_EXT_FUNC
00044 #define FESCR_CALL
00045 #endif
00046
00047
00048 #ifdef __cplusplus
00049 extern "C" {
00050 #endif
00051
00052
00053 #define LANGUAGE 9
00054
00055
00056
00057
00058
00059
00060 #define FESCR_ERR_NEW_SMARTCARDSLOT_FAILURE -4300
00061 #define FESCR_ERR_EMPTY_LIST -4301
00062 #define FESCR_ERR_POINTER_IS_NULL -4302
00063 #define FESCR_ERR_NO_MORE_MEM -4303
00064
00065
00066 #define FESCR_ERR_NO_USB_SUPPORT -4306
00067
00068
00069 #define FESCR_ERR_APDU_CURRENTLY_RUNNING -4309
00070
00071
00072
00073
00074
00075 #define FESCR_ERR_UNKNOWN_HND -4320
00076 #define FESCR_ERR_HND_IS_NULL -4321
00077 #define FESCR_ERR_HND_IS_NEGATIVE -4322
00078 #define FESCR_ERR_NO_HND_FOUND -4323
00079
00080
00081 #define FESCR_ERR_READER_HND_IS_NEGATIVE -4326
00082 #define FESCR_ERR_THREAD_NOT_CREATED -4327
00083
00084
00085 #define FESCR_ERR_UNKNOWN_PARAMETER -4350
00086 #define FESCR_ERR_PARAMETER_OUT_OF_RANGE -4351
00087
00088 #define FESCR_ERR_UNKNOWN_ERRORCODE -4353
00089 #define FESCR_ERR_UNDERSIZED_RESPONSE_BUFFER -4357 // Responsebuffer < 64kB
00090
00091
00092
00093
00094
00095 #define FESCR_INVALID_ACKNOWLEDGEMENT_LENGTH -4373
00096 #define FESCR_LIST_COMPLETE_FAILURE -4374 // Liste sollte komplett sein.
00097 #define FESCR_INCOMPLETE_RESPONSE -4375 // Response zurueck, aber nicht komplett. // gab aber was anderes
00098 #define FESCR_INVALID_PROTOCOL -4376
00099 #define FESCR_INVALID_TRANSMISSION -4377
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159 void DLL_EXT_FUNC FESCR_GetDLLVersion( char* cVersion );
00160
00161 int DLL_EXT_FUNC FESCR_GetErrorText( int iErrorCode, char* cErrorText );
00162
00163 int DLL_EXT_FUNC FESCR_GetLastError( int iSlotHnd, int* iErrorCode, char* cErrorText );
00164
00165
00166
00167
00168
00169
00170 int DLL_EXT_FUNC FESCR_NewScrSlot( int iReaderHnd,
00171 unsigned char ucBusAdr,
00172 int iSlotNo,
00173 unsigned char ucNad,
00174 bool bUseNad );
00175
00176 int DLL_EXT_FUNC FESCR_DeleteScrSlot( int iSlotHnd );
00177
00178 int DLL_EXT_FUNC FESCR_GetScrSlotList( int iNext );
00179
00180
00181
00182
00183 int DLL_EXT_FUNC FESCR_Activate( int iSlotHnd,
00184 unsigned char* ucReqData,
00185 int iReqDataLen,
00186 unsigned char* ucRspData,
00187 unsigned int uiRspDataBufSize,
00188 int* iRspDataLen );
00189
00190 int DLL_EXT_FUNC FESCR_Deactivate( int iSlotHnd );
00191
00192 int DLL_EXT_FUNC FESCR_Apdu( int iSlotHnd,
00193 unsigned char* ucReqApdu,
00194 int iReqApduLen,
00195 unsigned char* ucRspApdu,
00196 unsigned int uiRspApduBufSize,
00197 int* iRspApduLen );
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211 #undef DLL_EXT_FUNC
00212
00213 #ifdef __cplusplus
00214 }
00215 #endif
00216
00217
00218 #endif // _FESCR_INCLUDE_H