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
f06c01e2
Commit
f06c01e2
authored
Jan 29, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Declare some functions static.
parent
736743dd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
navigate.c
dlls/shdocvw/navigate.c
+1
-1
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+1
-1
shlinstobj.c
dlls/shdocvw/shlinstobj.c
+3
-3
No files found.
dlls/shdocvw/navigate.c
View file @
f06c01e2
...
...
@@ -548,7 +548,7 @@ HRESULT navigate_url(DocHost *This, BSTR url, VARIANT *Flags, VARIANT *TargetFra
return
hres
;
}
HRESULT
navigate_hlink
(
DocHost
*
This
,
IMoniker
*
mon
,
IBindCtx
*
bindctx
,
static
HRESULT
navigate_hlink
(
DocHost
*
This
,
IMoniker
*
mon
,
IBindCtx
*
bindctx
,
IBindStatusCallback
*
callback
)
{
IHttpNegotiate
*
http_negotiate
;
...
...
dlls/shdocvw/shdocvw_main.c
View file @
f06c01e2
...
...
@@ -126,7 +126,7 @@ HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
*
* makes sure the handle to shell32 is valid
*/
BOOL
SHDOCVW_LoadShell32
(
void
)
static
BOOL
SHDOCVW_LoadShell32
(
void
)
{
if
(
SHDOCVW_hshell32
)
return
TRUE
;
...
...
dlls/shdocvw/shlinstobj.c
View file @
f06c01e2
...
...
@@ -169,7 +169,7 @@ static const IPropertyBagVtbl RegistryPropertyBag_IPropertyBagVtbl = {
RegistryPropertyBag_IPropertyBag_Write
};
HRESULT
RegistryPropertyBag_Constructor
(
HKEY
hInitPropertyBagKey
,
REFIID
riid
,
LPVOID
*
ppvObject
)
{
static
HRESULT
RegistryPropertyBag_Constructor
(
HKEY
hInitPropertyBagKey
,
REFIID
riid
,
LPVOID
*
ppvObject
)
{
HRESULT
hr
=
E_FAIL
;
RegistryPropertyBag
*
pRegistryPropertyBag
;
...
...
@@ -313,8 +313,8 @@ static const IClassFactoryVtbl InstanceObjectFactory_IClassFactoryVtbl = {
InstanceObjectFactory_IClassFactory_LockServer
};
HRESULT
InstanceObjectFactory_Constructor
(
REFCLSID
rclsid
,
IPropertyBag
*
pPropertyBag
,
REFIID
riid
,
LPVOID
*
ppvObject
)
static
HRESULT
InstanceObjectFactory_Constructor
(
REFCLSID
rclsid
,
IPropertyBag
*
pPropertyBag
,
REFIID
riid
,
LPVOID
*
ppvObject
)
{
InstanceObjectFactory
*
pInstanceObjectFactory
;
HRESULT
hr
=
E_FAIL
;
...
...
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