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
855912cd
Commit
855912cd
authored
Jun 28, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Jun 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Partially implement HlinkSimpleNavigateToString.
parent
4edfeefa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
Makefile.in
dlls/urlmon/Makefile.in
+1
-1
umon.c
dlls/urlmon/umon.c
+23
-1
No files found.
dlls/urlmon/Makefile.in
View file @
855912cd
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
urlmon.dll
IMPORTLIB
=
urlmon
IMPORTS
=
uuid ole32 oleaut32 rpcrt4 shlwapi wininet user32 advapi32 kernel32 ntdll
IMPORTS
=
uuid ole32 oleaut32
shell32
rpcrt4 shlwapi wininet user32 advapi32 kernel32 ntdll
EXTRADEFS
=
-D_URLMON_
-DENTRY_PREFIX
=
URLMON_
-DPROXY_DELEGATION
-DREGISTER_PROXY_DLL
\
-DPROXY_CLSID_IS
=
"{0x79EAC9F1,0xBAF9,0x11CE,{0x8C,0x82,0x00,0xAA,0x00,0x4B,0xA9,0x0B}}"
...
...
dlls/urlmon/umon.c
View file @
855912cd
...
...
@@ -24,6 +24,8 @@
#include "winreg.h"
#include "shlwapi.h"
#include "hlink.h"
#include "shellapi.h"
#include "wine/debug.h"
...
...
@@ -742,7 +744,27 @@ HRESULT WINAPI HlinkSimpleNavigateToString( LPCWSTR szTarget,
LPCWSTR
szLocation
,
LPCWSTR
szTargetFrameName
,
IUnknown
*
pUnk
,
IBindCtx
*
pbc
,
IBindStatusCallback
*
pbsc
,
DWORD
grfHLNF
,
DWORD
dwReserved
)
{
FIXME
(
"%s
\n
"
,
debugstr_w
(
szTarget
)
);
FIXME
(
"%s %s %s %p %p %p %u %u partial stub
\n
"
,
debugstr_w
(
szTarget
),
debugstr_w
(
szLocation
),
debugstr_w
(
szTargetFrameName
),
pUnk
,
pbc
,
pbsc
,
grfHLNF
,
dwReserved
);
/* undocumented: 0 means HLNF_OPENINNEWWINDOW*/
if
(
!
grfHLNF
)
grfHLNF
=
HLNF_OPENINNEWWINDOW
;
if
(
grfHLNF
==
HLNF_OPENINNEWWINDOW
)
{
SHELLEXECUTEINFOW
sei
;
static
const
WCHAR
openW
[]
=
{
'o'
,
'p'
,
'e'
,
'n'
,
0
};
memset
(
&
sei
,
0
,
sizeof
(
sei
));
sei
.
cbSize
=
sizeof
(
sei
);
sei
.
lpVerb
=
openW
;
sei
.
nShow
=
SW_SHOWNORMAL
;
sei
.
fMask
=
SEE_MASK_FLAG_NO_UI
|
SEE_MASK_NO_CONSOLE
;
sei
.
lpFile
=
szTarget
;
if
(
ShellExecuteExW
(
&
sei
))
return
S_OK
;
}
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