1 /***************************************************************************
2     begin       : Mon Mar 01 2004
3     copyright   : (C) 2019 by Martin Preuss
4     email       : martin@libchipcard.de
5 
6  ***************************************************************************
7  *          Please see toplevel file COPYING for license details           *
8  ***************************************************************************/
9 
10 
11 #ifndef AQEBICS_CLIENT_R_UPLOAD_L_H
12 #define AQEBICS_CLIENT_R_UPLOAD_L_H
13 
14 #include "aqebics/client/provider_l.h"
15 
16 #include <aqbanking/backendsupport/provider.h>
17 #include <aqbanking/backendsupport/user.h>
18 #include <aqbanking/backendsupport/httpsession.h>
19 
20 
21 int EBC_Provider_XchgUploadRequest(AB_PROVIDER *pro,
22                                    GWEN_HTTP_SESSION *sess,
23                                    AB_USER *u,
24                                    const char *requestType,
25                                    const uint8_t *pData,
26                                    uint32_t lData);
27 
28 int EBC_Provider_XchgUploadRequest_H002(AB_PROVIDER *pro,
29                                         GWEN_HTTP_SESSION *sess,
30                                         AB_USER *u,
31                                         const char *requestType,
32                                         const uint8_t *pData,
33                                         uint32_t lData);
34 
35 int EBC_Provider_XchgUploadRequest_H003(AB_PROVIDER *pro,
36                                         GWEN_HTTP_SESSION *sess,
37                                         AB_USER *u,
38                                         const char *requestType,
39                                         const uint8_t *pData,
40                                         uint32_t lData);
41 
42 
43 
44 
45 
46 
47 
48 #endif
49 
50