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
2312fdeb
Commit
2312fdeb
authored
Sep 08, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 08, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ReleaseBindInfo implementation.
parent
ff59efe8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
16 deletions
+24
-16
umon.c
dlls/urlmon/umon.c
+0
-16
urlmon_main.c
dlls/urlmon/urlmon_main.c
+24
-0
No files found.
dlls/urlmon/umon.c
View file @
2312fdeb
...
@@ -1491,22 +1491,6 @@ HRESULT WINAPI RevokeBindStatusCallback(
...
@@ -1491,22 +1491,6 @@ HRESULT WINAPI RevokeBindStatusCallback(
}
}
/***********************************************************************
/***********************************************************************
* ReleaseBindInfo (URLMON.@)
*
* Release the resources used by the specified BINDINFO structure.
*
* PARAMS
* pbindinfo [I] BINDINFO to release.
*
* RETURNS
* Nothing.
*/
void
WINAPI
ReleaseBindInfo
(
BINDINFO
*
pbindinfo
)
{
FIXME
(
"(%p)stub!
\n
"
,
pbindinfo
);
}
/***********************************************************************
* URLDownloadToFileA (URLMON.@)
* URLDownloadToFileA (URLMON.@)
*
*
* Downloads URL szURL to rile szFileName and call lpfnCB callback to
* Downloads URL szURL to rile szFileName and call lpfnCB callback to
...
...
dlls/urlmon/urlmon_main.c
View file @
2312fdeb
...
@@ -362,3 +362,27 @@ HRESULT WINAPI CoGetClassObjectFromURL( REFCLSID rclsid, LPCWSTR szCodeURL, DWOR
...
@@ -362,3 +362,27 @@ HRESULT WINAPI CoGetClassObjectFromURL( REFCLSID rclsid, LPCWSTR szCodeURL, DWOR
debugstr_guid
(
riid
),
ppv
);
debugstr_guid
(
riid
),
ppv
);
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
/***********************************************************************
* ReleaseBindInfo (URLMON.@)
*
* Release the resources used by the specified BINDINFO structure.
*
* PARAMS
* pbindinfo [I] BINDINFO to release.
*
* RETURNS
* Nothing.
*/
void
WINAPI
ReleaseBindInfo
(
BINDINFO
*
pbindinfo
)
{
TRACE
(
"(%p)
\n
"
,
pbindinfo
);
if
(
!
pbindinfo
)
return
;
CoTaskMemFree
(
pbindinfo
->
szExtraInfo
);
if
(
pbindinfo
->
pUnk
)
IUnknown_Release
(
pbindinfo
->
pUnk
);
}
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