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
1088164a
Commit
1088164a
authored
Aug 12, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Remove no longer used get_nsIURI.
parent
57ba0459
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
26 deletions
+0
-26
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-2
nsio.c
dlls/mshtml/nsio.c
+0
-24
No files found.
dlls/mshtml/mshtml_private.h
View file @
1088164a
...
...
@@ -295,8 +295,6 @@ void init_nsio(nsIComponentManager*,nsIComponentRegistrar*);
void
hlink_frame_navigate
(
HTMLDocument
*
,
IHlinkFrame
*
,
LPCWSTR
,
nsIInputStream
*
,
DWORD
);
nsIURI
*
get_nsIURI
(
LPCWSTR
);
void
*
nsalloc
(
size_t
);
void
nsfree
(
void
*
);
...
...
dlls/mshtml/nsio.c
View file @
1088164a
...
...
@@ -1917,27 +1917,3 @@ void init_nsio(nsIComponentManager *component_manager, nsIComponentRegistrar *re
if
(
NS_FAILED
(
nsres
))
ERR
(
"RegisterFactory failed: %08lx
\n
"
,
nsres
);
}
nsIURI
*
get_nsIURI
(
LPCWSTR
url
)
{
nsIURI
*
ret
;
nsACString
acstr
;
nsresult
nsres
;
char
*
urla
;
int
len
;
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
url
,
-
1
,
NULL
,
-
1
,
NULL
,
NULL
);
urla
=
mshtml_alloc
(
len
);
WideCharToMultiByte
(
CP_ACP
,
0
,
url
,
-
1
,
urla
,
-
1
,
NULL
,
NULL
);
nsACString_Init
(
&
acstr
,
urla
);
nsres
=
nsIIOService_NewURI
(
nsio
,
&
acstr
,
NULL
,
NULL
,
&
ret
);
if
(
NS_FAILED
(
nsres
))
FIXME
(
"NewURI failed: %08lx
\n
"
,
nsres
);
nsACString_Finish
(
&
acstr
);
mshtml_free
(
urla
);
return
ret
;
}
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