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
422f362a
Commit
422f362a
authored
Feb 17, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupx.dll16: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e498e0ec
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/setupx.dll16/Makefile.in
+0
-1
devinst16.c
dlls/setupx.dll16/devinst16.c
+1
-1
setupx_main.c
dlls/setupx.dll16/setupx_main.c
+2
-2
virtcopy.c
dlls/setupx.dll16/virtcopy.c
+3
-3
No files found.
dlls/setupx.dll16/Makefile.in
View file @
422f362a
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
setupx.dll16
IMPORTS
=
setupapi user32 advapi32
...
...
dlls/setupx.dll16/devinst16.c
View file @
422f362a
...
...
@@ -104,7 +104,7 @@ RETERR16 WINAPI DiCreateDeviceInfo16(LPLPDEVICE_INFO16 lplpdi,
LPCSTR
lpszClassName
,
HWND16
hwndParent
)
{
LPDEVICE_INFO16
lpdi
;
FIXME
(
"(%p %s %08x %x %s %s %x): stub
\n
"
,
lplpdi
,
FIXME
(
"(%p %s %08
l
x %x %s %s %x): stub
\n
"
,
lplpdi
,
debugstr_a
(
lpszDescription
),
dnDevnode
,
hkey
,
debugstr_a
(
lpszRegsubkey
),
debugstr_a
(
lpszClassName
),
hwndParent
);
lpdi
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
DEVICE_INFO16
));
...
...
dlls/setupx.dll16/setupx_main.c
View file @
422f362a
...
...
@@ -86,7 +86,7 @@ DWORD WINAPI SURegQueryValueEx( HKEY hkey, LPSTR lpszValueName,
LPDWORD
lpdwReserved
,
LPDWORD
lpdwType
,
LPBYTE
lpbData
,
LPDWORD
lpcbData
)
{
FIXME
(
"(%p,%s,%p,%p,%p,%d), semi-stub.
\n
"
,
hkey
,
debugstr_a
(
lpszValueName
),
FIXME
(
"(%p,%s,%p,%p,%p,%
l
d), semi-stub.
\n
"
,
hkey
,
debugstr_a
(
lpszValueName
),
lpdwReserved
,
lpdwType
,
lpbData
,
lpcbData
?*
lpcbData
:
0
);
return
RegQueryValueExA
(
hkey
,
lpszValueName
,
lpdwReserved
,
lpdwType
,
lpbData
,
lpcbData
);
...
...
@@ -608,7 +608,7 @@ RETERR16 WINAPI CtlGetLddPath16(LOGDISKID16 ldid, LPSTR szPath)
*/
RETERR16
WINAPI
DiInstallClass16
(
LPCSTR
lpszInfFileName
,
DWORD
dwFlags
)
{
FIXME
(
"(%s, %u), stub.
\n
"
,
lpszInfFileName
,
dwFlags
);
FIXME
(
"(%s, %
l
u), stub.
\n
"
,
lpszInfFileName
,
dwFlags
);
return
0
;
}
...
...
dlls/setupx.dll16/virtcopy.c
View file @
422f362a
...
...
@@ -408,7 +408,7 @@ LPCSTR WINAPI VcpExplain16(LPVIRTNODE lpVn, DWORD dwWhat)
}
break
;
default:
FIXME
(
"%d unimplemented !
\n
"
,
dwWhat
);
FIXME
(
"%
l
d unimplemented !
\n
"
,
dwWhat
);
strcpy
(
buffer
,
"Unknown error"
);
break
;
}
...
...
@@ -517,7 +517,7 @@ RETERR16 WINAPI vcpDefCallbackProc16(LPVOID lpvObj, UINT16 uMsg, WPARAM wParam,
{
static
int
count
=
0
;
if
(
count
<
10
)
FIXME
(
"(%p, %04x, %04
l
x, %08lx, %08lx) - what to do here ?
\n
"
,
FIXME
(
"(%p, %04x, %04x, %08lx, %08lx) - what to do here ?
\n
"
,
lpvObj
,
uMsg
,
wParam
,
lParam
,
lParamRef
);
count
++
;
return
OK
;
...
...
@@ -669,7 +669,7 @@ RETERR16 WINAPI vcpUICallbackProc16(LPVOID lpvObj, UINT16 uMsg, WPARAM wParam,
RETERR16
res
=
VCPN_OK
;
if
(
count
<
5
)
FIXME
(
"(%p, %04x, %04
l
x, %08lx, %08lx) - semi-stub
\n
"
,
FIXME
(
"(%p, %04x, %04x, %08lx, %08lx) - semi-stub
\n
"
,
lpvObj
,
uMsg
,
wParam
,
lParam
,
lParamRef
);
count
++
;
switch
(
uMsg
)
...
...
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