Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7f31cc47
Commit
7f31cc47
authored
Dec 15, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add a stub implementation for SetupPromptReboot.
parent
b37b72b0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+9
-0
setupapi.h
include/setupapi.h
+1
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
7f31cc47
...
@@ -454,7 +454,7 @@
...
@@ -454,7 +454,7 @@
@ stdcall SetupOpenMasterInf()
@ stdcall SetupOpenMasterInf()
@ stub SetupPromptForDiskA
@ stub SetupPromptForDiskA
@ stub SetupPromptForDiskW
@ stub SetupPromptForDiskW
@ st
ub SetupPromptReboot
@ st
dcall SetupPromptReboot(ptr ptr long)
@ stub SetupQueryDrivesInDiskSpaceListA
@ stub SetupQueryDrivesInDiskSpaceListA
@ stub SetupQueryDrivesInDiskSpaceListW
@ stub SetupQueryDrivesInDiskSpaceListW
@ stub SetupQueryFileLogA
@ stub SetupQueryFileLogA
...
...
dlls/setupapi/stubs.c
View file @
7f31cc47
...
@@ -200,3 +200,12 @@ BOOL WINAPI SetupOpenLog(BOOL Reserved)
...
@@ -200,3 +200,12 @@ BOOL WINAPI SetupOpenLog(BOOL Reserved)
FIXME
(
"(%d) stub
\n
"
,
Reserved
);
FIXME
(
"(%d) stub
\n
"
,
Reserved
);
return
TRUE
;
return
TRUE
;
}
}
/***********************************************************************
* SetupPromptReboot(SETUPAPI.@)
*/
INT
WINAPI
SetupPromptReboot
(
HSPFILEQ
file_queue
,
HWND
owner
,
BOOL
scan_only
)
{
FIXME
(
"%p, %p, %d
\n
"
,
file_queue
,
owner
,
scan_only
);
return
0
;
}
include/setupapi.h
View file @
7f31cc47
...
@@ -851,6 +851,7 @@ HINF WINAPI SetupOpenInfFileA( PCSTR name, PCSTR pszclass, DWORD style, UINT
...
@@ -851,6 +851,7 @@ HINF WINAPI SetupOpenInfFileA( PCSTR name, PCSTR pszclass, DWORD style, UINT
HINF
WINAPI
SetupOpenInfFileW
(
PCWSTR
name
,
PCWSTR
pszclass
,
DWORD
style
,
UINT
*
error
);
HINF
WINAPI
SetupOpenInfFileW
(
PCWSTR
name
,
PCWSTR
pszclass
,
DWORD
style
,
UINT
*
error
);
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
HINF
WINAPI
SetupOpenMasterInf
(
VOID
);
HINF
WINAPI
SetupOpenMasterInf
(
VOID
);
INT
WINAPI
SetupPromptReboot
(
HSPFILEQ
,
HWND
,
BOOL
);
BOOL
WINAPI
SetupQueryInfFileInformationA
(
PSP_INF_INFORMATION
,
UINT
,
PSTR
,
DWORD
,
PDWORD
);
BOOL
WINAPI
SetupQueryInfFileInformationA
(
PSP_INF_INFORMATION
,
UINT
,
PSTR
,
DWORD
,
PDWORD
);
BOOL
WINAPI
SetupQueryInfFileInformationW
(
PSP_INF_INFORMATION
,
UINT
,
PWSTR
,
DWORD
,
PDWORD
);
BOOL
WINAPI
SetupQueryInfFileInformationW
(
PSP_INF_INFORMATION
,
UINT
,
PWSTR
,
DWORD
,
PDWORD
);
#define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation)
#define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation)
...
...
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