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
fe32d211
Commit
fe32d211
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 IAutomaticUpdates.
parent
e614df55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
223 additions
and
1 deletion
+223
-1
Makefile.in
dlls/wuapi/Makefile.in
+2
-1
updates.c
dlls/wuapi/updates.c
+221
-0
No files found.
dlls/wuapi/Makefile.in
View file @
fe32d211
...
...
@@ -10,7 +10,8 @@ C_SRCS = \
downloader.c
\
installer.c
\
main.c
\
searcher.c
searcher.c
\
updates.c
@MAKE_DLL_RULES@
...
...
dlls/wuapi/updates.c
0 → 100644
View file @
fe32d211
/*
* IAutomaticUpdates 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
_automatic_updates
{
const
struct
IAutomaticUpdatesVtbl
*
vtbl
;
LONG
refs
;
}
automatic_updates
;
static
inline
automatic_updates
*
impl_from_IAutomaticUpdates
(
IAutomaticUpdates
*
iface
)
{
return
(
automatic_updates
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
automatic_updates
,
vtbl
));
}
static
ULONG
WINAPI
automatic_updates_AddRef
(
IAutomaticUpdates
*
iface
)
{
automatic_updates
*
automatic_updates
=
impl_from_IAutomaticUpdates
(
iface
);
return
InterlockedIncrement
(
&
automatic_updates
->
refs
);
}
static
ULONG
WINAPI
automatic_updates_Release
(
IAutomaticUpdates
*
iface
)
{
automatic_updates
*
automatic_updates
=
impl_from_IAutomaticUpdates
(
iface
);
LONG
refs
=
InterlockedDecrement
(
&
automatic_updates
->
refs
);
if
(
!
refs
)
{
TRACE
(
"destroying %p
\n
"
,
automatic_updates
);
HeapFree
(
GetProcessHeap
(),
0
,
automatic_updates
);
}
return
refs
;
}
static
HRESULT
WINAPI
automatic_updates_QueryInterface
(
IAutomaticUpdates
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
automatic_updates
*
This
=
impl_from_IAutomaticUpdates
(
iface
);
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
riid
,
&
IID_IAutomaticUpdates
)
||
IsEqualGUID
(
riid
,
&
IID_IDispatch
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
)
{
*
ppvObject
=
iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IAutomaticUpdates_AddRef
(
iface
);
return
S_OK
;
}
static
HRESULT
WINAPI
automatic_updates_GetTypeInfoCount
(
IAutomaticUpdates
*
iface
,
UINT
*
pctinfo
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_GetTypeInfo
(
IAutomaticUpdates
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_GetIDsOfNames
(
IAutomaticUpdates
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_Invoke
(
IAutomaticUpdates
*
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
automatic_updates_DetectNow
(
IAutomaticUpdates
*
This
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_Pause
(
IAutomaticUpdates
*
This
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_Resume
(
IAutomaticUpdates
*
This
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_ShowSettingsDialog
(
IAutomaticUpdates
*
This
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_EnableService
(
IAutomaticUpdates
*
This
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_get_ServiceEnabled
(
IAutomaticUpdates
*
This
,
VARIANT_BOOL
*
retval
)
{
FIXME
(
"%p
\n
"
,
retval
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
automatic_updates_get_Settings
(
IAutomaticUpdates
*
This
,
IAutomaticUpdatesSettings
**
retval
)
{
FIXME
(
"%p
\n
"
,
retval
);
return
E_NOTIMPL
;
}
static
const
struct
IAutomaticUpdatesVtbl
automatic_updates_vtbl
=
{
automatic_updates_QueryInterface
,
automatic_updates_AddRef
,
automatic_updates_Release
,
automatic_updates_GetTypeInfoCount
,
automatic_updates_GetTypeInfo
,
automatic_updates_GetIDsOfNames
,
automatic_updates_Invoke
,
automatic_updates_DetectNow
,
automatic_updates_Pause
,
automatic_updates_Resume
,
automatic_updates_ShowSettingsDialog
,
automatic_updates_get_Settings
,
automatic_updates_get_ServiceEnabled
,
automatic_updates_EnableService
};
HRESULT
AutomaticUpdates_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
automatic_updates
*
updates
;
TRACE
(
"(%p,%p)
\n
"
,
pUnkOuter
,
ppObj
);
updates
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
updates
)
);
if
(
!
updates
)
return
E_OUTOFMEMORY
;
updates
->
vtbl
=
&
automatic_updates_vtbl
;
updates
->
refs
=
1
;
*
ppObj
=
&
updates
->
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