Updated.
[wine/multimedia.git] / dlls / setupapi / devinst16.c
blob0c402621410986c8347edbc6e00eae109810b67b
1 /*
2 * SetupAPI device installer
4 * Copyright 2000 Andreas Mohr for CodeWeavers
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "setupx16.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
30 /***********************************************************************
31 * DiGetClassDevs (SETUPX.304)
32 * Return a list of installed system devices.
33 * Uses HKLM\\ENUM to list devices.
35 RETERR16 WINAPI DiGetClassDevs16(LPLPDEVICE_INFO16 lplpdi,
36 LPCSTR lpszClassName, HWND16 hwndParent, INT16 iFlags)
38 LPDEVICE_INFO16 lpdi;
40 FIXME("(%p, '%s', %04x, %04x), semi-stub.\n",
41 lplpdi, lpszClassName, hwndParent, iFlags);
42 lpdi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(DEVICE_INFO16));
43 lpdi->cbSize = sizeof(DEVICE_INFO16);
44 *lplpdi = (LPDEVICE_INFO16)MapLS(lpdi);
45 return OK;
48 /***********************************************************************
49 * DiBuildCompatDrvList (SETUPX.300)
51 RETERR16 WINAPI DiBuildCompatDrvList16(LPDEVICE_INFO16 lpdi)
53 FIXME("(%p): stub\n", lpdi);
54 lpdi->lpCompatDrvList = NULL;
55 return FALSE;
58 /***********************************************************************
59 * DiCallClassInstaller (SETUPX.308)
61 RETERR16 WINAPI DiCallClassInstaller16(/*DI_FUNCTIONS*/WORD diFctn, LPDEVICE_INFO16 lpdi)
63 FIXME("(%x, %p): stub\n", diFctn, lpdi);
64 return FALSE;
67 /***********************************************************************
68 * DiCreateDevRegKey (SETUPX.318)
70 RETERR16 WINAPI DiCreateDevRegKey16(LPDEVICE_INFO16 lpdi,
71 VOID* p2, WORD w3,
72 LPCSTR s4, WORD w5)
74 FIXME("(%p, %p, %x, %s, %x): stub\n", lpdi, p2, w3, debugstr_a(s4), w5);
75 return FALSE;
78 /***********************************************************************
79 * DiDeleteDevRegKey (SETUPX.344)
81 RETERR16 WINAPI DiDeleteDevRegKey16(LPDEVICE_INFO16 lpdi, INT16 iFlags)
83 FIXME("(%p, %x): stub\n", lpdi, iFlags);
84 return FALSE;
87 /***********************************************************************
88 * DiCreateDeviceInfo (SETUPX.303)
90 RETERR16 WINAPI DiCreateDeviceInfo16(LPLPDEVICE_INFO16 lplpdi,
91 LPCSTR lpszDescription, DWORD dnDevnode,
92 HKEY16 hkey, LPCSTR lpszRegsubkey,
93 LPCSTR lpszClassName, HWND16 hwndParent)
95 LPDEVICE_INFO16 lpdi;
96 FIXME("(%p %s %08lx %x %s %s %x): stub\n", lplpdi,
97 debugstr_a(lpszDescription), dnDevnode, hkey,
98 debugstr_a(lpszRegsubkey), debugstr_a(lpszClassName), hwndParent);
99 lpdi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(DEVICE_INFO16));
100 lpdi->cbSize = sizeof(DEVICE_INFO16);
101 strcpy(lpdi->szClassName, lpszClassName);
102 lpdi->hwndParent = hwndParent;
103 *lplpdi = (LPDEVICE_INFO16)MapLS(lpdi);
104 return OK;
107 /***********************************************************************
108 * DiDestroyDeviceInfoList (SETUPX.305)
110 RETERR16 WINAPI DiDestroyDeviceInfoList16(LPDEVICE_INFO16 lpdi)
112 FIXME("(%p): stub\n", lpdi);
113 return FALSE;
116 /***********************************************************************
117 * DiOpenDevRegKey (SETUPX.319)
119 RETERR16 WINAPI DiOpenDevRegKey16(LPDEVICE_INFO16 lpdi,
120 LPHKEY16 lphk,INT16 iFlags)
122 FIXME("(%p %p %d): stub\n", lpdi, lphk, iFlags);
123 return FALSE;