blob: 75fd1b76cf477f3b12c2c0fe0601730750af4c3a [file] [log] [blame]
Eric Pouech02483811999-01-26 17:23:30 +00001/* -*- tab-width: 8; c-basic-offset: 4 -*- */
2
Alexandre Julliard58199531994-04-21 01:20:00 +00003/*
Alexandre Julliardf90efa91998-06-14 15:24:15 +00004 * WINE Drivers functions
Alexandre Julliard58199531994-04-21 01:20:00 +00005 *
6 * Copyright 1994 Martin Ayotte
Alexandre Julliardf90efa91998-06-14 15:24:15 +00007 * Copyright 1998 Marcus Meissner
Eric Pouech66b44682000-12-13 02:07:40 +00008 * Copyright 1999,2000 Eric Pouech
Alexandre Julliardf90efa91998-06-14 15:24:15 +00009 */
Alexandre Julliard58199531994-04-21 01:20:00 +000010
Eric Pouech3fb2f421999-03-15 15:14:06 +000011#include <string.h>
Alexandre Julliard1922c722001-07-25 00:43:29 +000012
Jeremy Whited3e22d92000-02-10 19:03:02 +000013#include "windef.h"
Alexandre Julliard680919c2000-05-07 18:39:28 +000014#include "wine/winbase16.h"
Jeremy Whited3e22d92000-02-10 19:03:02 +000015#include "wingdi.h"
Eric Pouech95aa1c32000-01-04 00:26:50 +000016#include "winuser.h"
Eric Pouech37c02171999-09-05 16:44:38 +000017#include "mmddk.h"
18#include "debugtools.h"
Alexandre Julliard58199531994-04-21 01:20:00 +000019
Alexandre Julliard680919c2000-05-07 18:39:28 +000020DEFAULT_DEBUG_CHANNEL(driver);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000021
Eric Pouech4f81c3e2000-01-15 22:29:32 +000022typedef struct tagWINE_DRIVER
23{
Eric Pouech4f81c3e2000-01-15 22:29:32 +000024 char szAliasName[128];
25 /* as usual LPWINE_DRIVER == hDriver32 */
26 HDRVR16 hDriver16;
Eric Pouech66b44682000-12-13 02:07:40 +000027 HMODULE16 hModule16;
28 DRIVERPROC16 lpDrvProc;
Eric Pouech4f81c3e2000-01-15 22:29:32 +000029 DWORD dwDriverID;
Eric Pouech4f81c3e2000-01-15 22:29:32 +000030 struct tagWINE_DRIVER* lpPrevItem;
31 struct tagWINE_DRIVER* lpNextItem;
32} WINE_DRIVER, *LPWINE_DRIVER;
33
Eric Pouech02483811999-01-26 17:23:30 +000034static LPWINE_DRIVER lpDrvItemList = NULL;
35
36/* TODO list :
Eric Pouech95aa1c32000-01-04 00:26:50 +000037 * - LoadModule count and clean up is not handled correctly (it's not a
38 * problem as long as FreeLibrary is not working correctly)
Eric Pouech02483811999-01-26 17:23:30 +000039 */
Alexandre Julliard58199531994-04-21 01:20:00 +000040
Eric Pouech95aa1c32000-01-04 00:26:50 +000041/* ### start build ### */
42extern LONG CALLBACK DRIVER_CallTo16_long_lwwll(FARPROC16,LONG,WORD,WORD,LONG,LONG);
43/* ### stop build ### */
44
Alexandre Julliarda845b881998-06-01 10:44:35 +000045/**************************************************************************
Eric Pouech02483811999-01-26 17:23:30 +000046 * LoadStartupDrivers [internal]
Alexandre Julliarda845b881998-06-01 10:44:35 +000047 */
Marcus Meissnerde43ef41999-02-28 19:56:59 +000048static void WINE_UNUSED DRIVER_LoadStartupDrivers(void)
Alexandre Julliard7e50df31994-08-06 11:22:41 +000049{
Eric Pouech02483811999-01-26 17:23:30 +000050 char str[256];
Eric Pouech3fb2f421999-03-15 15:14:06 +000051
Alexandre Julliarda3960291999-02-26 11:11:13 +000052 if (GetPrivateProfileStringA("drivers", NULL, "", str, sizeof(str), "SYSTEM.INI") < 2) {
Eric Pouech09f03b41999-06-22 19:07:34 +000053 ERR("Can't find drivers section in system.ini\n");
Eric Pouechbd1a0a61999-04-10 16:50:24 +000054 } else {
55 HDRVR16 hDrv;
56 LPSTR ptr;
57
Alexandre Julliardcb10fda2000-08-06 02:41:16 +000058 for (ptr = str; *ptr; ptr += strlen(ptr) + 1) {
Eric Pouech09f03b41999-06-22 19:07:34 +000059 TRACE("str='%s'\n", ptr);
Eric Pouechbd1a0a61999-04-10 16:50:24 +000060 hDrv = OpenDriver16(ptr, "drivers", 0L);
Eric Pouech09f03b41999-06-22 19:07:34 +000061 TRACE("hDrv=%04x\n", hDrv);
Eric Pouechbd1a0a61999-04-10 16:50:24 +000062 }
Eric Pouech09f03b41999-06-22 19:07:34 +000063 TRACE("end of list !\n");
Alexandre Julliard3051b641996-07-05 17:14:13 +000064 }
Alexandre Julliard7e50df31994-08-06 11:22:41 +000065}
66
Alexandre Julliard58199531994-04-21 01:20:00 +000067/**************************************************************************
Eric Pouech02483811999-01-26 17:23:30 +000068 * DRIVER_GetNumberOfModuleRefs [internal]
69 *
70 * Returns the number of open drivers which share the same module.
71 */
72static WORD DRIVER_GetNumberOfModuleRefs(LPWINE_DRIVER lpNewDrv)
73{
74 LPWINE_DRIVER lpDrv;
Eric Pouech02483811999-01-26 17:23:30 +000075 WORD count = 0;
76
77 for (lpDrv = lpDrvItemList; lpDrv; lpDrv = lpDrv->lpNextItem) {
Eric Pouech66b44682000-12-13 02:07:40 +000078 if (lpDrv->hModule16 == lpNewDrv->hModule16) {
79 count++;
Eric Pouech02483811999-01-26 17:23:30 +000080 }
81 }
82 return count;
83}
84
Eric Pouech3fb2f421999-03-15 15:14:06 +000085/**************************************************************************
86 * DRIVER_FindFromHDrvr16 [internal]
87 *
88 * From a hDrvr being 16 bits, returns the WINE internal structure.
89 */
Eric Pouech02483811999-01-26 17:23:30 +000090static LPWINE_DRIVER DRIVER_FindFromHDrvr16(HDRVR16 hDrvr)
91{
92 LPWINE_DRIVER lpDrv;
93
94 for (lpDrv = lpDrvItemList; lpDrv; lpDrv = lpDrv->lpNextItem) {
95 if (lpDrv->hDriver16 == hDrvr) {
Eric Pouechbd1a0a61999-04-10 16:50:24 +000096 break;
Eric Pouech02483811999-01-26 17:23:30 +000097 }
98 }
Eric Pouechbd1a0a61999-04-10 16:50:24 +000099 return lpDrv;
Eric Pouech02483811999-01-26 17:23:30 +0000100}
101
102/**************************************************************************
Eric Pouech66b44682000-12-13 02:07:40 +0000103 * DRIVER_SendMessage [internal]
Eric Pouech3fb2f421999-03-15 15:14:06 +0000104 */
Eric Pouech66b44682000-12-13 02:07:40 +0000105static LRESULT inline DRIVER_SendMessage(LPWINE_DRIVER lpDrv, UINT16 msg,
106 LPARAM lParam1, LPARAM lParam2)
Eric Pouech02483811999-01-26 17:23:30 +0000107{
Eric Pouech66b44682000-12-13 02:07:40 +0000108 TRACE("Before CallDriverProc proc=%p driverID=%08lx wMsg=%04x p1=%08lx p2=%08lx\n",
109 lpDrv->lpDrvProc, lpDrv->dwDriverID, msg, lParam1, lParam2);
110 return DRIVER_CallTo16_long_lwwll((FARPROC16)lpDrv->lpDrvProc, lpDrv->dwDriverID,
111 lpDrv->hDriver16, msg, lParam1, lParam2);
Eric Pouech02483811999-01-26 17:23:30 +0000112}
113
114/**************************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000115 * SendDriverMessage (USER.251)
Patrik Stridvall0c610282001-01-25 22:22:21 +0000116 * SendDriverMessage16 (USER32.@)
Alexandre Julliard58199531994-04-21 01:20:00 +0000117 */
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000118LRESULT WINAPI SendDriverMessage16(HDRVR16 hDriver, UINT16 msg, LPARAM lParam1,
119 LPARAM lParam2)
Alexandre Julliard58199531994-04-21 01:20:00 +0000120{
Eric Pouech02483811999-01-26 17:23:30 +0000121 LPWINE_DRIVER lpDrv;
122 LRESULT retval = 0;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000123
Eric Pouech09f03b41999-06-22 19:07:34 +0000124 TRACE("(%04x, %04X, %08lX, %08lX)\n", hDriver, msg, lParam1, lParam2);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000125
Eric Pouech66b44682000-12-13 02:07:40 +0000126 if ((lpDrv = DRIVER_FindFromHDrvr16(hDriver)) != NULL) {
127 retval = DRIVER_SendMessage(lpDrv, msg, lParam1, lParam2);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000128 } else {
Eric Pouech09f03b41999-06-22 19:07:34 +0000129 WARN("Bad driver handle %u\n", hDriver);
Alexandre Julliard3051b641996-07-05 17:14:13 +0000130 }
Eric Pouech3fb2f421999-03-15 15:14:06 +0000131
Eric Pouech09f03b41999-06-22 19:07:34 +0000132 TRACE("retval = %ld\n", retval);
Alexandre Julliard3051b641996-07-05 17:14:13 +0000133 return retval;
Alexandre Julliard58199531994-04-21 01:20:00 +0000134}
135
136/**************************************************************************
Eric Pouech3fb2f421999-03-15 15:14:06 +0000137 * DRIVER_RemoveFromList [internal]
138 *
139 * Generates all the logic to handle driver closure / deletion
140 * Removes a driver struct to the list of open drivers.
141 */
142static BOOL DRIVER_RemoveFromList(LPWINE_DRIVER lpDrv)
143{
144 lpDrv->dwDriverID = 0;
145 if (DRIVER_GetNumberOfModuleRefs(lpDrv) == 1) {
Eric Pouech66b44682000-12-13 02:07:40 +0000146 DRIVER_SendMessage(lpDrv, DRV_DISABLE, 0L, 0L);
147 DRIVER_SendMessage(lpDrv, DRV_FREE, 0L, 0L);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000148 }
Eric Pouech09f03b41999-06-22 19:07:34 +0000149
150 if (lpDrv->lpPrevItem)
151 lpDrv->lpPrevItem->lpNextItem = lpDrv->lpNextItem;
152 else
153 lpDrvItemList = lpDrv->lpNextItem;
154 if (lpDrv->lpNextItem)
155 lpDrv->lpNextItem->lpPrevItem = lpDrv->lpPrevItem;
156
Eric Pouech3fb2f421999-03-15 15:14:06 +0000157 return TRUE;
158}
159
160/**************************************************************************
Eric Pouech02483811999-01-26 17:23:30 +0000161 * DRIVER_AddToList [internal]
162 *
163 * Adds a driver struct to the list of open drivers.
164 * Generates all the logic to handle driver creation / open.
Alexandre Julliard58199531994-04-21 01:20:00 +0000165 */
Eric Pouech66b44682000-12-13 02:07:40 +0000166static BOOL DRIVER_AddToList(LPWINE_DRIVER lpNewDrv, LPARAM lParam1, LPARAM lParam2)
Eric Pouech02483811999-01-26 17:23:30 +0000167{
168 /* First driver to be loaded for this module, need to load correctly the module */
169 if (DRIVER_GetNumberOfModuleRefs(lpNewDrv) == 0) {
Eric Pouech66b44682000-12-13 02:07:40 +0000170 if (DRIVER_SendMessage(lpNewDrv, DRV_LOAD, 0L, 0L) != DRV_SUCCESS) {
Eric Pouech09f03b41999-06-22 19:07:34 +0000171 TRACE("DRV_LOAD failed on driver 0x%08lx\n", (DWORD)lpNewDrv);
Eric Pouech02483811999-01-26 17:23:30 +0000172 return FALSE;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000173 }
Eric Pouech66b44682000-12-13 02:07:40 +0000174 /* returned value is not checked */
175 DRIVER_SendMessage(lpNewDrv, DRV_ENABLE, 0L, 0L);
Eric Pouech02483811999-01-26 17:23:30 +0000176 }
Alexandre Julliard3051b641996-07-05 17:14:13 +0000177
Eric Pouech02483811999-01-26 17:23:30 +0000178 lpNewDrv->lpNextItem = NULL;
179 if (lpDrvItemList == NULL) {
180 lpDrvItemList = lpNewDrv;
181 lpNewDrv->lpPrevItem = NULL;
182 } else {
183 LPWINE_DRIVER lpDrv = lpDrvItemList; /* find end of list */
184 while (lpDrv->lpNextItem != NULL)
185 lpDrv = lpDrv->lpNextItem;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000186
Eric Pouech02483811999-01-26 17:23:30 +0000187 lpDrv->lpNextItem = lpNewDrv;
188 lpNewDrv->lpPrevItem = lpDrv;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000189 }
Eric Pouech3fb2f421999-03-15 15:14:06 +0000190 /* Now just open a new instance of a driver on this module */
Eric Pouech66b44682000-12-13 02:07:40 +0000191 lpNewDrv->dwDriverID = DRIVER_SendMessage(lpNewDrv, DRV_OPEN, lParam1, lParam2);
192
Eric Pouech3fb2f421999-03-15 15:14:06 +0000193 if (lpNewDrv->dwDriverID == 0) {
Eric Pouech09f03b41999-06-22 19:07:34 +0000194 TRACE("DRV_OPEN failed on driver 0x%08lx\n", (DWORD)lpNewDrv);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000195 DRIVER_RemoveFromList(lpNewDrv);
196 return FALSE;
197 }
198
Eric Pouech02483811999-01-26 17:23:30 +0000199 return TRUE;
Alexandre Julliard58199531994-04-21 01:20:00 +0000200}
201
202/**************************************************************************
Eric Pouech66b44682000-12-13 02:07:40 +0000203 * DRIVER_TryOpenDriver16 [internal]
Eric Pouech02483811999-01-26 17:23:30 +0000204 *
Eric Pouech66b44682000-12-13 02:07:40 +0000205 * Tries to load a 16 bit driver whose DLL's (module) name is lpFileName.
Eric Pouech02483811999-01-26 17:23:30 +0000206 */
Eric Pouech66b44682000-12-13 02:07:40 +0000207static LPWINE_DRIVER DRIVER_TryOpenDriver16(LPCSTR lpFileName, LPARAM lParam2)
Eric Pouech02483811999-01-26 17:23:30 +0000208{
Eric Pouech66b44682000-12-13 02:07:40 +0000209 static WORD DRIVER_hDrvr16Counter /* = 0 */;
210 LPWINE_DRIVER lpDrv = NULL;
211 HMODULE16 hModule;
212 DRIVERPROC16 lpProc;
213 LPCSTR lpSFN;
214 LPSTR ptr;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000215
Eric Pouech66b44682000-12-13 02:07:40 +0000216 TRACE("('%s', %08lX);\n", lpFileName, lParam2);
217
218 if (strlen(lpFileName) < 1) return lpDrv;
219
220 if ((lpSFN = strrchr(lpFileName, '\\')) == NULL)
221 lpSFN = lpFileName;
222 else
223 lpSFN++;
224 if ((ptr = strchr(lpFileName, ' ')) != NULL) {
225 *ptr++ = '\0';
226 while (*ptr == ' ') ptr++;
227 if (*ptr == '\0') ptr = NULL;
228 }
229
Eric Pouech247a94f2000-12-21 20:21:53 +0000230 if ((hModule = LoadLibrary16(lpFileName)) < 32) goto exit;
Eric Pouech66b44682000-12-13 02:07:40 +0000231 if ((lpProc = (DRIVERPROC16)GetProcAddress16(hModule, "DRIVERPROC")) == NULL)
232 goto exit;
233
234 if ((lpDrv = HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_DRIVER))) == NULL)
235 goto exit;
236
237 lpDrv->dwDriverID = 0;
Eric Pouech02483811999-01-26 17:23:30 +0000238 while (DRIVER_FindFromHDrvr16(++DRIVER_hDrvr16Counter));
Eric Pouech66b44682000-12-13 02:07:40 +0000239 lpDrv->hDriver16 = DRIVER_hDrvr16Counter;
240 lstrcpynA(lpDrv->szAliasName, lpSFN, sizeof(lpDrv->szAliasName));
241 lpDrv->hModule16 = hModule;
242 lpDrv->lpDrvProc = lpProc;
243
244 if (!DRIVER_AddToList(lpDrv, (LPARAM)ptr, lParam2)) goto exit;
245
246 return lpDrv;
247 exit:
248 TRACE("Unable to load 16 bit module (%s): %04x\n", lpFileName, hModule);
249 if (hModule >= 32) FreeLibrary16(hModule);
250 HeapFree(GetProcessHeap(), 0, lpDrv);
251 return NULL;
Eric Pouech02483811999-01-26 17:23:30 +0000252}
253
254/**************************************************************************
Patrik Stridvall0c610282001-01-25 22:22:21 +0000255 * OpenDriver (USER.252)
256 * OpenDriver16 (USER32.@)
Eric Pouech09f03b41999-06-22 19:07:34 +0000257 */
Eric Pouech66b44682000-12-13 02:07:40 +0000258HDRVR16 WINAPI OpenDriver16(LPCSTR lpDriverName, LPCSTR lpSectionName, LPARAM lParam2)
Eric Pouech09f03b41999-06-22 19:07:34 +0000259{
Eric Pouech66b44682000-12-13 02:07:40 +0000260 LPWINE_DRIVER lpDrv = NULL;
261 char drvName[128];
262
263 TRACE("('%s', '%s', %08lX);\n", lpDriverName, lpSectionName, lParam2);
264
265 if (!lpDriverName || !*lpDriverName) return 0;
266
267 if (lpSectionName == NULL) {
268 strcpy(drvName, lpDriverName);
269
270 if ((lpDrv = DRIVER_TryOpenDriver16(drvName, lParam2)))
271 goto the_end;
272 /* in case hDriver is NULL, search in Drivers section */
273 lpSectionName = "Drivers";
274 }
275 if (GetPrivateProfileStringA(lpSectionName, lpDriverName, "",
276 drvName, sizeof(drvName), "SYSTEM.INI") > 0) {
277 lpDrv = DRIVER_TryOpenDriver16(drvName, lParam2);
278 }
279 if (!lpDrv) {
Eric Pouech247a94f2000-12-21 20:21:53 +0000280 TRACE("Failed to open driver %s from system.ini file, section %s\n", lpDriverName, lpSectionName);
Eric Pouech66b44682000-12-13 02:07:40 +0000281 return 0;
282 }
283 the_end:
284 TRACE("=> %04x / %08lx\n", lpDrv->hDriver16, (DWORD)lpDrv);
285 return lpDrv->hDriver16;
286}
287
288/**************************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000289 * CloseDriver (USER.253)
Patrik Stridvall0c610282001-01-25 22:22:21 +0000290 * CloseDriver16 (USER32.@)
Eric Pouech66b44682000-12-13 02:07:40 +0000291 */
292LRESULT WINAPI CloseDriver16(HDRVR16 hDrvr, LPARAM lParam1, LPARAM lParam2)
293{
294 LPWINE_DRIVER lpDrv;
295
296 TRACE("(%04x, %08lX, %08lX);\n", hDrvr, lParam1, lParam2);
297
298 if ((lpDrv = DRIVER_FindFromHDrvr16(hDrvr)) != NULL) {
299 DRIVER_SendMessage(lpDrv, DRV_CLOSE, lParam1, lParam2);
Eric Pouech09f03b41999-06-22 19:07:34 +0000300
301 if (DRIVER_RemoveFromList(lpDrv)) {
Alexandre Julliard90476d62000-02-16 22:47:24 +0000302 HeapFree(GetProcessHeap(), 0, lpDrv);
Eric Pouech09f03b41999-06-22 19:07:34 +0000303 return TRUE;
304 }
305 }
306 WARN("Failed to close driver\n");
307 return FALSE;
308}
309
310/**************************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000311 * GetDriverModuleHandle (USER.254)
Patrik Stridvall0c610282001-01-25 22:22:21 +0000312 * GetDriverModuleHandle16 (USER32.@)
Alexandre Julliard58199531994-04-21 01:20:00 +0000313 */
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000314HMODULE16 WINAPI GetDriverModuleHandle16(HDRVR16 hDrvr)
Alexandre Julliard58199531994-04-21 01:20:00 +0000315{
Eric Pouech02483811999-01-26 17:23:30 +0000316 LPWINE_DRIVER lpDrv;
317 HMODULE16 hModule = 0;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000318
Eric Pouech09f03b41999-06-22 19:07:34 +0000319 TRACE("(%04x);\n", hDrvr);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000320
Eric Pouech66b44682000-12-13 02:07:40 +0000321 if ((lpDrv = DRIVER_FindFromHDrvr16(hDrvr)) != NULL) {
322 hModule = lpDrv->hModule16;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000323 }
Eric Pouech66b44682000-12-13 02:07:40 +0000324 TRACE("=> %04x\n", hModule);
Eric Pouech02483811999-01-26 17:23:30 +0000325 return hModule;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000326}
327
328/**************************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000329 * DefDriverProc (USER.255)
Patrik Stridvall0c610282001-01-25 22:22:21 +0000330 * DefDriverProc16 (USER32.@)
Alexandre Julliard58199531994-04-21 01:20:00 +0000331 */
Turchanov Sergey86f5d821998-10-18 11:22:36 +0000332LRESULT WINAPI DefDriverProc16(DWORD dwDevID, HDRVR16 hDriv, UINT16 wMsg,
333 LPARAM lParam1, LPARAM lParam2)
Alexandre Julliard58199531994-04-21 01:20:00 +0000334{
Eric Pouech09f03b41999-06-22 19:07:34 +0000335 TRACE("devID=0x%08lx hDrv=0x%04x wMsg=%04x lP1=0x%08lx lP2=0x%08lx\n",
Eric Pouechc9ed21f1999-03-19 16:57:29 +0000336 dwDevID, hDriv, wMsg, lParam1, lParam2);
337
Eric Pouech02483811999-01-26 17:23:30 +0000338 switch(wMsg) {
Eric Pouech9f2ad561999-03-22 14:47:36 +0000339 case DRV_LOAD:
340 case DRV_FREE:
341 case DRV_ENABLE:
342 case DRV_DISABLE:
343 return (LRESULT)1L;
344 case DRV_OPEN:
345 case DRV_CLOSE:
346 case DRV_QUERYCONFIGURE:
347 return (LRESULT)0L;
348 case DRV_CONFIGURE:
349 MessageBoxA(0, "Driver isn't configurable !", "Wine Driver", MB_OK);
350 return (LRESULT)0L;
351 case DRV_INSTALL:
352 case DRV_REMOVE:
353 return DRV_SUCCESS;
354 default:
355 return (LRESULT)0L;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000356 }
Alexandre Julliard58199531994-04-21 01:20:00 +0000357}
358
359/**************************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000360 * GetDriverInfo (USER.256)
Alexandre Julliard58199531994-04-21 01:20:00 +0000361 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000362BOOL16 WINAPI GetDriverInfo16(HDRVR16 hDrvr, LPDRIVERINFOSTRUCT16 lpDrvInfo)
Alexandre Julliard58199531994-04-21 01:20:00 +0000363{
Eric Pouech02483811999-01-26 17:23:30 +0000364 LPWINE_DRIVER lpDrv;
365 BOOL16 ret = FALSE;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000366
Eric Pouech09f03b41999-06-22 19:07:34 +0000367 TRACE("(%04x, %p);\n", hDrvr, lpDrvInfo);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000368
Eric Pouechbd1a0a61999-04-10 16:50:24 +0000369 if (lpDrvInfo == NULL || lpDrvInfo->length != sizeof(DRIVERINFOSTRUCT16))
370 return FALSE;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000371
Eric Pouech66b44682000-12-13 02:07:40 +0000372 if ((lpDrv = DRIVER_FindFromHDrvr16(hDrvr)) != NULL) {
Eric Pouech02483811999-01-26 17:23:30 +0000373 lpDrvInfo->hDriver = lpDrv->hDriver16;
Eric Pouech66b44682000-12-13 02:07:40 +0000374 lpDrvInfo->hModule = lpDrv->hModule16;
Francois Gougetbaa9bf91999-12-27 05:24:06 +0000375 lstrcpynA(lpDrvInfo->szAliasName, lpDrv->szAliasName, sizeof(lpDrvInfo->szAliasName));
Eric Pouech02483811999-01-26 17:23:30 +0000376 ret = TRUE;
377 }
Eric Pouech3fb2f421999-03-15 15:14:06 +0000378
Eric Pouech02483811999-01-26 17:23:30 +0000379 return ret;
Alexandre Julliard58199531994-04-21 01:20:00 +0000380}
381
382/**************************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000383 * GetNextDriver (USER.257)
Alexandre Julliard58199531994-04-21 01:20:00 +0000384 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000385HDRVR16 WINAPI GetNextDriver16(HDRVR16 hDrvr, DWORD dwFlags)
Alexandre Julliard58199531994-04-21 01:20:00 +0000386{
Eric Pouech02483811999-01-26 17:23:30 +0000387 HDRVR16 hRetDrv = 0;
388 LPWINE_DRIVER lpDrv;
Eric Pouech3fb2f421999-03-15 15:14:06 +0000389
Eric Pouech09f03b41999-06-22 19:07:34 +0000390 TRACE("(%04x, %08lX);\n", hDrvr, dwFlags);
Eric Pouech3fb2f421999-03-15 15:14:06 +0000391
Eric Pouech02483811999-01-26 17:23:30 +0000392 if (hDrvr == 0) {
393 if (lpDrvItemList == NULL) {
Eric Pouech09f03b41999-06-22 19:07:34 +0000394 FIXME("drivers list empty !\n");
Eric Pouech02483811999-01-26 17:23:30 +0000395 /* FIXME: code was using DRIVER_LoadStartupDrivers(); before ?
396 * I (EPP) don't quite understand this
397 */
Eric Pouechbd1a0a61999-04-10 16:50:24 +0000398 if (lpDrvItemList == NULL)
399 return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000400 }
Eric Pouech02483811999-01-26 17:23:30 +0000401 lpDrv = lpDrvItemList;
402 if (dwFlags & GND_REVERSE) {
403 while (lpDrv->lpNextItem)
404 lpDrv = lpDrv->lpNextItem;
405 }
406 } else {
Eric Pouech66b44682000-12-13 02:07:40 +0000407 if ((lpDrv = DRIVER_FindFromHDrvr16(hDrvr)) != NULL) {
Eric Pouech02483811999-01-26 17:23:30 +0000408 if (dwFlags & GND_REVERSE) {
409 lpDrv = (lpDrv->lpPrevItem) ? lpDrv->lpPrevItem : NULL;
410 } else {
411 lpDrv = (lpDrv->lpNextItem) ? lpDrv->lpNextItem : NULL;
412 }
413 }
Alexandre Julliard3051b641996-07-05 17:14:13 +0000414 }
Eric Pouech3fb2f421999-03-15 15:14:06 +0000415
Eric Pouech02483811999-01-26 17:23:30 +0000416 hRetDrv = (lpDrv) ? lpDrv->hDriver16 : (HDRVR16)0;
Eric Pouech09f03b41999-06-22 19:07:34 +0000417 TRACE("return %04x !\n", hRetDrv);
Alexandre Julliard3051b641996-07-05 17:14:13 +0000418 return hRetDrv;
Alexandre Julliard58199531994-04-21 01:20:00 +0000419}
Eric Pouech02483811999-01-26 17:23:30 +0000420