4 * Copyright 2002-2003 AVM Computersysteme Vertriebs GmbH
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define __NO_CAPIUTILS__
25 #include "wine/port.h"
28 #include <sys/types.h>
34 #ifdef HAVE_LINUX_CAPI_H
35 # include <linux/capi.h>
40 #include "wine/library.h"
41 #include "wine/debug.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(capi);
46 #ifdef SONAME_LIBCAPI20
48 static unsigned (*pcapi20_register)(unsigned, unsigned, unsigned, unsigned *) = NULL;
49 static unsigned (*pcapi20_release)(unsigned) = NULL;
50 static unsigned (*pcapi20_put_message)(unsigned, unsigned char *) = NULL;
51 static unsigned (*pcapi20_get_message)(unsigned, unsigned char **) = NULL;
52 static unsigned (*pcapi20_waitformessage)(unsigned, struct timeval *) = NULL;
53 static unsigned (*pcapi20_isinstalled)(void) = NULL;
54 static unsigned (*pcapi20_get_profile)(unsigned, unsigned char *) = NULL;
55 static unsigned char *(*pcapi20_get_manufacturer)(unsigned, unsigned char *) = NULL;
56 static unsigned char *(*pcapi20_get_serial_number)(unsigned, unsigned char *) = NULL;
57 static unsigned char *(*pcapi20_get_version)(unsigned, unsigned char *) = NULL;
59 static void load_functions(void) {
60 void *capi_handle = NULL;
62 if (pcapi20_register) /* loaded already */
64 capi_handle = wine_dlopen(SONAME_LIBCAPI20, RTLD_NOW, NULL, 0);
66 FIXME("Wine cannot find the library %s, capi2032.dll not working.\n", SONAME_LIBCAPI20);
69 #define LOAD_FUNCPTR(f) if((p##f = wine_dlsym(capi_handle, #f, NULL, 0)) == NULL){WARN("Can't find symbol %s\n", #f); return;}
70 LOAD_FUNCPTR(capi20_register);
71 LOAD_FUNCPTR(capi20_release);
72 LOAD_FUNCPTR(capi20_put_message);
73 LOAD_FUNCPTR(capi20_get_message);
74 LOAD_FUNCPTR(capi20_waitformessage);
75 LOAD_FUNCPTR(capi20_isinstalled);
76 LOAD_FUNCPTR(capi20_get_profile);
77 LOAD_FUNCPTR(capi20_get_manufacturer);
78 LOAD_FUNCPTR(capi20_get_serial_number);
79 LOAD_FUNCPTR(capi20_get_version);
85 /*===========================================================================*\
86 \*===========================================================================*/
88 DWORD WINAPI wrapCAPI_REGISTER (DWORD MessageBufferSize, DWORD maxLogicalConnection, DWORD maxBDataBlocks, DWORD maxBDataLen, DWORD *pApplID) {
89 #ifdef SONAME_LIBCAPI20
94 if (!pcapi20_register)
96 fret = pcapi20_register (maxLogicalConnection, maxBDataBlocks, maxBDataLen, &aid);
98 TRACE ( "(%x) -> %x\n", *pApplID, fret);
101 FIXME ( "(), no CAPI4LINUX support compiled into WINE.\n" );
106 /*---------------------------------------------------------------------------*\
107 \*---------------------------------------------------------------------------*/
108 DWORD WINAPI wrapCAPI_RELEASE (DWORD ApplID) {
109 #ifdef SONAME_LIBCAPI20
113 if (!pcapi20_release)
115 fret = pcapi20_release (ApplID);
116 TRACE ("(%x) -> %x\n", ApplID, fret);
123 /*---------------------------------------------------------------------------*\
124 \*---------------------------------------------------------------------------*/
125 DWORD WINAPI wrapCAPI_PUT_MESSAGE (DWORD ApplID, PVOID pCAPIMessage) {
126 #ifdef SONAME_LIBCAPI20
130 if (!pcapi20_put_message)
132 fret = pcapi20_put_message (ApplID, pCAPIMessage);
133 TRACE ("(%x) -> %x\n", ApplID, fret);
140 /*---------------------------------------------------------------------------*\
141 \*---------------------------------------------------------------------------*/
142 DWORD WINAPI wrapCAPI_GET_MESSAGE (DWORD ApplID, PVOID *ppCAPIMessage) {
143 #ifdef SONAME_LIBCAPI20
147 if (!pcapi20_get_message)
149 fret = pcapi20_get_message (ApplID, (unsigned char **)ppCAPIMessage);
150 TRACE ("(%x) -> %x\n", ApplID, fret);
157 /*---------------------------------------------------------------------------*\
158 \*---------------------------------------------------------------------------*/
159 DWORD WINAPI wrapCAPI_WAIT_FOR_SIGNAL (DWORD ApplID) {
160 #ifdef SONAME_LIBCAPI20
161 TRACE ("(%x)\n", ApplID);
164 if (!pcapi20_waitformessage)
167 return pcapi20_waitformessage (ApplID, NULL);
173 /*---------------------------------------------------------------------------*\
174 \*---------------------------------------------------------------------------*/
175 DWORD WINAPI wrapCAPI_GET_MANUFACTURER (char *SzBuffer) {
176 #ifdef SONAME_LIBCAPI20
180 if (!pcapi20_get_manufacturer)
183 fret = (pcapi20_get_manufacturer (0, (unsigned char *) SzBuffer) != 0) ? 0 : 0x1108;
184 if (!strncmp (SzBuffer, "AVM", 3)) {
185 strcpy (SzBuffer, "AVM-GmbH");
187 TRACE ("(%s) -> %x\n", SzBuffer, fret);
194 /*---------------------------------------------------------------------------*\
195 \*---------------------------------------------------------------------------*/
196 DWORD WINAPI wrapCAPI_GET_VERSION (DWORD *pCAPIMajor, DWORD *pCAPIMinor, DWORD *pManufacturerMajor, DWORD *pManufacturerMinor) {
197 #ifdef SONAME_LIBCAPI20
198 unsigned char version[4 * sizeof (unsigned)];
202 if (!pcapi20_get_version)
204 fret = (pcapi20_get_version (0, version) != 0) ? 0 : 0x1108;
205 *pCAPIMajor = *(unsigned *)(version + 0 * sizeof (unsigned));
206 *pCAPIMinor = *(unsigned *)(version + 1 * sizeof (unsigned));
207 *pManufacturerMajor = *(unsigned *)(version + 2 * sizeof (unsigned));
208 *pManufacturerMinor = *(unsigned *)(version + 3 * sizeof (unsigned));
209 TRACE ("(%x.%x,%x.%x) -> %x\n", *pCAPIMajor, *pCAPIMinor, *pManufacturerMajor,
210 *pManufacturerMinor, fret);
217 /*---------------------------------------------------------------------------*\
218 \*---------------------------------------------------------------------------*/
219 DWORD WINAPI wrapCAPI_GET_SERIAL_NUMBER (char *SzBuffer) {
220 #ifdef SONAME_LIBCAPI20
224 if (!pcapi20_get_serial_number)
226 fret = (pcapi20_get_serial_number (0, (unsigned char*) SzBuffer) != 0) ? 0 : 0x1108;
227 TRACE ("(%s) -> %x\n", SzBuffer, fret);
234 /*---------------------------------------------------------------------------*\
235 \*---------------------------------------------------------------------------*/
236 DWORD WINAPI wrapCAPI_GET_PROFILE (PVOID SzBuffer, DWORD CtlrNr) {
237 #ifdef SONAME_LIBCAPI20
241 if (!pcapi20_get_profile)
244 fret = pcapi20_get_profile (CtlrNr, SzBuffer);
245 TRACE ("(%x,%x) -> %x\n", CtlrNr, *(unsigned short *)SzBuffer, fret);
252 /*---------------------------------------------------------------------------*\
253 \*---------------------------------------------------------------------------*/
254 DWORD WINAPI wrapCAPI_INSTALLED (void) {
255 #ifdef SONAME_LIBCAPI20
259 if (!pcapi20_isinstalled)
261 fret = pcapi20_isinstalled();
262 TRACE ("() -> %x\n", fret);
269 /*---------------------------------------------------------------------------*\
270 \*---------------------------------------------------------------------------*/
271 DWORD WINAPI wrapCAPI_MANUFACTURER (DWORD Class, DWORD Function, DWORD Ctlr, PVOID pParams, DWORD ParamsLen) {
272 FIXME ("(), not supported!\n");
276 /*---------------------------------------------------------------------------*\
277 \*---------------------------------------------------------------------------*/