Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8be6740b
Commit
8be6740b
authored
Oct 13, 2015
by
Austin English
Committed by
Alexandre Julliard
Oct 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
newdev: Add a stub for InstallSelectedDriver.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c62a95d2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
main.c
dlls/newdev/main.c
+14
-0
newdev.spec
dlls/newdev/newdev.spec
+1
-0
No files found.
dlls/newdev/main.c
View file @
8be6740b
...
...
@@ -18,8 +18,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winerror.h"
#include "winbase.h"
#include "winuser.h"
#include "winreg.h"
#include "setupapi.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
@@ -35,6 +41,14 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot)
return
TRUE
;
}
/***********************************************************************
* InstallSelectedDriver (NEWDEV.@)
*/
BOOL
WINAPI
InstallSelectedDriver
(
HWND
parent
,
HDEVINFO
info
,
const
WCHAR
*
reserved
,
BOOL
backup
,
DWORD
*
reboot
)
{
FIXME
(
"Stub! %p %p %s %u %p
\n
"
,
parent
,
info
,
debugstr_w
(
reserved
),
backup
,
reboot
);
return
TRUE
;
}
/***********************************************************************
* UpdateDriverForPlugAndPlayDevicesA (NEWDEV.@)
...
...
dlls/newdev/newdev.spec
View file @
8be6740b
@ stdcall InstallNewDevice(long ptr ptr)
@ stdcall InstallSelectedDriver(long ptr wstr long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesA(long str str long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesW(long wstr wstr long ptr)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment