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
85d44cab
Commit
85d44cab
authored
Dec 16, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wuapi: Add a stub implementation of IUpdateInstaller.
parent
0d9359c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
254 additions
and
0 deletions
+254
-0
Makefile.in
dlls/wuapi/Makefile.in
+1
-0
installer.c
dlls/wuapi/installer.c
+253
-0
No files found.
dlls/wuapi/Makefile.in
View file @
85d44cab
...
...
@@ -8,6 +8,7 @@ IMPORTS = uuid kernel32
C_SRCS
=
\
downloader.c
\
installer.c
\
main.c
@MAKE_DLL_RULES@
...
...
dlls/wuapi/installer.c
0 → 100644
View file @
85d44cab
/*
* IUpdateInstaller implementation
*
* Copyright 2008 Hans Leidekker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define COBJMACROS
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "wuapi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wuapi
);
typedef
struct
_update_installer
{
const
struct
IUpdateInstallerVtbl
*
vtbl
;
LONG
refs
;
}
update_installer
;
static
inline
update_installer
*
impl_from_IUpdateInstaller
(
IUpdateInstaller
*
iface
)
{
return
(
update_installer
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
update_installer
,
vtbl
));
}
static
ULONG
WINAPI
update_installer_AddRef
(
IUpdateInstaller
*
iface
)
{
update_installer
*
update_installer
=
impl_from_IUpdateInstaller
(
iface
);
return
InterlockedIncrement
(
&
update_installer
->
refs
);
}
static
ULONG
WINAPI
update_installer_Release
(
IUpdateInstaller
*
iface
)
{
update_installer
*
update_installer
=
impl_from_IUpdateInstaller
(
iface
);
LONG
refs
=
InterlockedDecrement
(
&
update_installer
->
refs
);
if
(
!
refs
)
{
TRACE
(
"destroying %p
\n
"
,
update_installer
);
HeapFree
(
GetProcessHeap
(),
0
,
update_installer
);
}
return
refs
;
}
static
HRESULT
WINAPI
update_installer_QueryInterface
(
IUpdateInstaller
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
update_installer
*
This
=
impl_from_IUpdateInstaller
(
iface
);
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
riid
,
&
IID_IUpdateInstaller
)
||
IsEqualGUID
(
riid
,
&
IID_IDispatch
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
)
{
*
ppvObject
=
iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IUpdateInstaller_AddRef
(
iface
);
return
S_OK
;
}
static
HRESULT
WINAPI
update_installer_GetTypeInfoCount
(
IUpdateInstaller
*
iface
,
UINT
*
pctinfo
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_GetTypeInfo
(
IUpdateInstaller
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_GetIDsOfNames
(
IUpdateInstaller
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_Invoke
(
IUpdateInstaller
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_get_ClientApplicationID
(
IUpdateInstaller
*
This
,
BSTR
*
retval
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_put_ClientApplicationID
(
IUpdateInstaller
*
This
,
BSTR
value
)
{
FIXME
(
"%p, %s
\n
"
,
This
,
debugstr_w
(
value
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_get_IsForced
(
IUpdateInstaller
*
This
,
VARIANT_BOOL
*
retval
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_put_IsForced
(
IUpdateInstaller
*
This
,
VARIANT_BOOL
value
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_get_ParentHwnd
(
IUpdateInstaller
*
This
,
HWND
*
retval
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_put_ParentHwnd
(
IUpdateInstaller
*
This
,
HWND
value
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_put_ParentWindow
(
IUpdateInstaller
*
This
,
IUnknown
*
value
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_get_ParentWindow
(
IUpdateInstaller
*
This
,
IUnknown
**
retval
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_get_Updates
(
IUpdateInstaller
*
This
,
IUpdateCollection
**
retval
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
update_installer_put_Updates
(
IUpdateInstaller
*
This
,
IUpdateCollection
*
value
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
const
struct
IUpdateInstallerVtbl
update_installer_vtbl
=
{
update_installer_QueryInterface
,
update_installer_AddRef
,
update_installer_Release
,
update_installer_GetTypeInfoCount
,
update_installer_GetTypeInfo
,
update_installer_GetIDsOfNames
,
update_installer_Invoke
,
update_installer_get_ClientApplicationID
,
update_installer_put_ClientApplicationID
,
update_installer_get_IsForced
,
update_installer_put_IsForced
,
update_installer_get_ParentHwnd
,
update_installer_put_ParentHwnd
,
update_installer_put_ParentWindow
,
update_installer_get_ParentWindow
,
update_installer_get_Updates
,
update_installer_put_Updates
,
};
HRESULT
UpdateInstaller_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
update_installer
*
installer
;
TRACE
(
"(%p,%p)
\n
"
,
pUnkOuter
,
ppObj
);
installer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
installer
)
);
if
(
!
installer
)
return
E_OUTOFMEMORY
;
installer
->
vtbl
=
&
update_installer_vtbl
;
installer
->
refs
=
1
;
*
ppObj
=
&
installer
->
vtbl
;
TRACE
(
"returning iface %p
\n
"
,
*
ppObj
);
return
S_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