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
e6abe0e8
Commit
e6abe0e8
authored
Dec 14, 2008
by
Christian Costa
Committed by
Alexandre Julliard
Dec 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupx: Add stub for DiInstallClass.
parent
424caea9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
setupx.spec
dlls/setupapi/setupx.spec
+1
-1
setupx_main.c
dlls/setupapi/setupx_main.c
+11
-0
No files found.
dlls/setupapi/setupx.spec
View file @
e6abe0e8
...
...
@@ -154,7 +154,7 @@
318 pascal -ret16 DiCreateDevRegKey (ptr ptr word str word) DiCreateDevRegKey16
319 pascal -ret16 DiOpenDevRegKey (ptr ptr word) DiOpenDevRegKey16
320 stub DiInstallDrvSection #(str str str str long)
321
stub DiInstallClass #(str long)
321
pascal -ret16 DiInstallClass (str long) DiInstallClass16
322 stub DiOpenClassRegKey #(ptr str)
323 stub Display_SetFontSize #(str)
324 stub Display_OpenFontSizeKey #(ptr)
...
...
dlls/setupapi/setupx_main.c
View file @
e6abe0e8
...
...
@@ -587,6 +587,17 @@ RETERR16 WINAPI CtlGetLddPath16(LOGDISKID16 ldid, LPSTR szPath)
}
/***********************************************************************
* DiInstallClass (SETUPX.321)
*
* Install Class from an INF file (in [ClassInstall] section)
*/
RETERR16
WINAPI
DiInstallClass16
(
LPCSTR
lpszInfFileName
,
DWORD
dwFlags
)
{
FIXME
(
"(%s, %u), stub.
\n
"
,
lpszInfFileName
,
dwFlags
);
return
0
;
}
/***********************************************************************
* CtlSetLddPath (SETUPX.508)
*
* Sets the path of an LDD.
...
...
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