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
ff0d84d4
Commit
ff0d84d4
authored
Dec 21, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupx: Pass 0 as instance to InstallHinfSectionA.
parent
59af9ad1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
setupx_main.c
dlls/setupx.dll16/setupx_main.c
+1
-3
No files found.
dlls/setupx.dll16/setupx_main.c
View file @
ff0d84d4
...
...
@@ -70,8 +70,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
setupapi
);
#define HINSTANCE_32(h16) ((HINSTANCE)(ULONG_PTR)(h16))
/***********************************************************************
* SURegOpenKey (SETUPX.47)
*/
...
...
@@ -126,7 +124,7 @@ DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
*/
RETERR16
WINAPI
InstallHinfSection16
(
HWND16
hwnd
,
HINSTANCE16
hinst
,
LPCSTR
lpszCmdLine
,
INT16
nCmdShow
)
{
InstallHinfSectionA
(
HWND_32
(
hwnd
),
HINSTANCE_32
(
hinst
)
,
lpszCmdLine
,
nCmdShow
);
InstallHinfSectionA
(
HWND_32
(
hwnd
),
0
,
lpszCmdLine
,
nCmdShow
);
return
OK
;
}
...
...
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