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
8d006c1d
Commit
8d006c1d
authored
Feb 11, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 11, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inseng: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
03598fa6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
Makefile.in
dlls/inseng/Makefile.in
+0
-1
inseng_main.c
dlls/inseng/inseng_main.c
+7
-7
No files found.
dlls/inseng/Makefile.in
View file @
8d006c1d
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
inseng.dll
MODULE
=
inseng.dll
IMPORTS
=
uuid ole32 advapi32
IMPORTS
=
uuid ole32 advapi32
...
...
dlls/inseng/inseng_main.c
View file @
8d006c1d
...
@@ -74,7 +74,7 @@ static ULONG WINAPI InstallEngine_AddRef(IInstallEngine2 *iface)
...
@@ -74,7 +74,7 @@ static ULONG WINAPI InstallEngine_AddRef(IInstallEngine2 *iface)
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%
l
d
\n
"
,
This
,
ref
);
return
ref
;
return
ref
;
}
}
...
@@ -84,7 +84,7 @@ static ULONG WINAPI InstallEngine_Release(IInstallEngine2 *iface)
...
@@ -84,7 +84,7 @@ static ULONG WINAPI InstallEngine_Release(IInstallEngine2 *iface)
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%
l
d
\n
"
,
This
,
ref
);
if
(
!
ref
)
if
(
!
ref
)
heap_free
(
This
);
heap_free
(
This
);
...
@@ -109,14 +109,14 @@ static HRESULT WINAPI InstallEngine_SetCifFile(IInstallEngine2 *iface, const cha
...
@@ -109,14 +109,14 @@ static HRESULT WINAPI InstallEngine_SetCifFile(IInstallEngine2 *iface, const cha
static
HRESULT
WINAPI
InstallEngine_DownloadComponents
(
IInstallEngine2
*
iface
,
DWORD
flags
)
static
HRESULT
WINAPI
InstallEngine_DownloadComponents
(
IInstallEngine2
*
iface
,
DWORD
flags
)
{
{
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
flags
);
FIXME
(
"(%p)->(%
l
x)
\n
"
,
This
,
flags
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
InstallEngine_InstallComponents
(
IInstallEngine2
*
iface
,
DWORD
flags
)
static
HRESULT
WINAPI
InstallEngine_InstallComponents
(
IInstallEngine2
*
iface
,
DWORD
flags
)
{
{
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
flags
);
FIXME
(
"(%p)->(%
l
x)
\n
"
,
This
,
flags
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -158,7 +158,7 @@ static HRESULT WINAPI InstallEngine_UnregisterInstallEngineCallback(IInstallEngi
...
@@ -158,7 +158,7 @@ static HRESULT WINAPI InstallEngine_UnregisterInstallEngineCallback(IInstallEngi
static
HRESULT
WINAPI
InstallEngine_SetAction
(
IInstallEngine2
*
iface
,
const
char
*
id
,
DWORD
action
,
DWORD
priority
)
static
HRESULT
WINAPI
InstallEngine_SetAction
(
IInstallEngine2
*
iface
,
const
char
*
id
,
DWORD
action
,
DWORD
priority
)
{
{
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
FIXME
(
"(%p)->(%s %
d %
d)
\n
"
,
This
,
debugstr_a
(
id
),
action
,
priority
);
FIXME
(
"(%p)->(%s %
ld %l
d)
\n
"
,
This
,
debugstr_a
(
id
),
action
,
priority
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -207,7 +207,7 @@ static HRESULT WINAPI InstallEngine_SetInstallDrive(IInstallEngine2 *iface, char
...
@@ -207,7 +207,7 @@ static HRESULT WINAPI InstallEngine_SetInstallDrive(IInstallEngine2 *iface, char
static
HRESULT
WINAPI
InstallEngine_SetInstallOptions
(
IInstallEngine2
*
iface
,
DWORD
flags
)
static
HRESULT
WINAPI
InstallEngine_SetInstallOptions
(
IInstallEngine2
*
iface
,
DWORD
flags
)
{
{
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
flags
);
FIXME
(
"(%p)->(%
l
x)
\n
"
,
This
,
flags
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -228,7 +228,7 @@ static HRESULT WINAPI InstallEngine_SetIStream(IInstallEngine2 *iface, IStream *
...
@@ -228,7 +228,7 @@ static HRESULT WINAPI InstallEngine_SetIStream(IInstallEngine2 *iface, IStream *
static
HRESULT
WINAPI
InstallEngine_Abort
(
IInstallEngine2
*
iface
,
DWORD
flags
)
static
HRESULT
WINAPI
InstallEngine_Abort
(
IInstallEngine2
*
iface
,
DWORD
flags
)
{
{
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
InstallEngine
*
This
=
impl_from_IInstallEngine2
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
flags
);
FIXME
(
"(%p)->(%
l
x)
\n
"
,
This
,
flags
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
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