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
caf6fa95
Commit
caf6fa95
authored
May 04, 2005
by
Troy Rollo
Committed by
Alexandre Julliard
May 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement URLMonikerImpl_BindToStorage.
parent
9d86716e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
0 deletions
+14
-0
Makefile.in
dlls/urlmon/Makefile.in
+1
-0
umon.c
dlls/urlmon/umon.c
+0
-0
umstream.c
dlls/urlmon/umstream.c
+0
-0
urlmon_main.h
dlls/urlmon/urlmon_main.h
+13
-0
No files found.
dlls/urlmon/Makefile.in
View file @
caf6fa95
...
...
@@ -10,6 +10,7 @@ C_SRCS = \
regsvr.c
\
sec_mgr.c
\
umon.c
\
umstream.c
\
urlmon_main.c
SUBDIRS
=
tests
...
...
dlls/urlmon/umon.c
View file @
caf6fa95
This diff is collapsed.
Click to expand it.
dlls/urlmon/umstream.c
0 → 100644
View file @
caf6fa95
This diff is collapsed.
Click to expand it.
dlls/urlmon/urlmon_main.h
View file @
caf6fa95
...
...
@@ -37,4 +37,17 @@ static inline void URLMON_UnlockModule() { InterlockedDecrement( &URLMON_refCoun
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
typedef
struct
{
const
IStreamVtbl
*
lpVtbl
;
DWORD
ref
;
HANDLE
handle
;
BOOL
closed
;
WCHAR
*
pszFileName
;
WCHAR
*
pszURL
;
}
IUMCacheStream
;
HRESULT
UMCreateStreamOnCacheFile
(
LPCWSTR
pszURL
,
DWORD
dwSize
,
LPWSTR
pszFileName
,
HANDLE
*
phfile
,
IUMCacheStream
**
ppstr
);
void
UMCloseCacheFileStream
(
IUMCacheStream
*
pstr
);
#endif
/* __WINE_URLMON_MAIN_H */
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