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
11a6f353
Commit
11a6f353
authored
Apr 07, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added DeCompMimeFilter stub implementation.
parent
5ebc7ba7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
198 additions
and
1 deletion
+198
-1
Makefile.in
dlls/urlmon/Makefile.in
+1
-0
mimefilter.c
dlls/urlmon/mimefilter.c
+192
-0
urlmon_main.c
dlls/urlmon/urlmon_main.c
+4
-1
urlmon_main.h
dlls/urlmon/urlmon_main.h
+1
-0
No files found.
dlls/urlmon/Makefile.in
View file @
11a6f353
...
...
@@ -17,6 +17,7 @@ C_SRCS = \
gopher.c
\
http.c
\
internet.c
\
mimefilter.c
\
mk.c
\
protocol.c
\
regsvr.c
\
...
...
dlls/urlmon/mimefilter.c
0 → 100644
View file @
11a6f353
/*
* Copyright 2009 Jacek Caban for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "urlmon_main.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
urlmon
);
typedef
struct
{
const
IInternetProtocolVtbl
*
lpIInternetProtocolVtbl
;
LONG
ref
;
}
MimeFilter
;
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpIInternetProtocolVtbl)
#define PROTOCOL_THIS(iface) DEFINE_THIS(MimeFilter, IInternetProtocol, iface)
static
HRESULT
WINAPI
MimeFilterProtocol_QueryInterface
(
IInternetProtocol
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
*
ppv
=
NULL
;
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
{
TRACE
(
"(%p)->(IID_IUnknown %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTOCOL
(
This
);
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocolRoot
,
riid
))
{
TRACE
(
"(%p)->(IID_IInternetProtocolRoot %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTOCOL
(
This
);
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocol
,
riid
))
{
TRACE
(
"(%p)->(IID_IInternetProtocol %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTOCOL
(
This
);
}
if
(
*
ppv
)
{
IInternetProtocol_AddRef
(
iface
);
return
S_OK
;
}
WARN
(
"not supported interface %s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
MimeFilterProtocol_AddRef
(
IInternetProtocol
*
iface
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
MimeFilterProtocol_Release
(
IInternetProtocol
*
iface
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
heap_free
(
This
);
URLMON_UnlockModule
();
}
return
ref
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Start
(
IInternetProtocol
*
iface
,
LPCWSTR
szUrl
,
IInternetProtocolSink
*
pOIProtSink
,
IInternetBindInfo
*
pOIBindInfo
,
DWORD
grfPI
,
HANDLE_PTR
dwReserved
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%s %p %p %08x %lx)
\n
"
,
This
,
debugstr_w
(
szUrl
),
pOIProtSink
,
pOIBindInfo
,
grfPI
,
dwReserved
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Continue
(
IInternetProtocol
*
iface
,
PROTOCOLDATA
*
pProtocolData
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pProtocolData
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Abort
(
IInternetProtocol
*
iface
,
HRESULT
hrReason
,
DWORD
dwOptions
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%08x %08x)
\n
"
,
This
,
hrReason
,
dwOptions
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Terminate
(
IInternetProtocol
*
iface
,
DWORD
dwOptions
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%08x)
\n
"
,
This
,
dwOptions
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Suspend
(
IInternetProtocol
*
iface
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Resume
(
IInternetProtocol
*
iface
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Read
(
IInternetProtocol
*
iface
,
void
*
pv
,
ULONG
cb
,
ULONG
*
pcbRead
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%p %u %p)
\n
"
,
This
,
pv
,
cb
,
pcbRead
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_Seek
(
IInternetProtocol
*
iface
,
LARGE_INTEGER
dlibMove
,
DWORD
dwOrigin
,
ULARGE_INTEGER
*
plibNewPosition
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%d %d %p)
\n
"
,
This
,
dlibMove
.
u
.
LowPart
,
dwOrigin
,
plibNewPosition
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_LockRequest
(
IInternetProtocol
*
iface
,
DWORD
dwOptions
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)->(%08x)
\n
"
,
This
,
dwOptions
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeFilterProtocol_UnlockRequest
(
IInternetProtocol
*
iface
)
{
MimeFilter
*
This
=
PROTOCOL_THIS
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
}
#undef PROTOCOL_THIS
static
const
IInternetProtocolVtbl
MimeFilterProtocolVtbl
=
{
MimeFilterProtocol_QueryInterface
,
MimeFilterProtocol_AddRef
,
MimeFilterProtocol_Release
,
MimeFilterProtocol_Start
,
MimeFilterProtocol_Continue
,
MimeFilterProtocol_Abort
,
MimeFilterProtocol_Terminate
,
MimeFilterProtocol_Suspend
,
MimeFilterProtocol_Resume
,
MimeFilterProtocol_Read
,
MimeFilterProtocol_Seek
,
MimeFilterProtocol_LockRequest
,
MimeFilterProtocol_UnlockRequest
};
HRESULT
MimeFilter_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
)
{
MimeFilter
*
ret
;
TRACE
(
"(%p %p)
\n
"
,
pUnkOuter
,
ppobj
);
URLMON_LockModule
();
ret
=
heap_alloc_zero
(
sizeof
(
MimeFilter
));
ret
->
lpIInternetProtocolVtbl
=
&
MimeFilterProtocolVtbl
;
ret
->
ref
=
1
;
*
ppobj
=
PROTOCOL
(
ret
);
return
S_OK
;
}
dlls/urlmon/urlmon_main.c
View file @
11a6f353
...
...
@@ -187,6 +187,8 @@ static const ClassFactory ZoneManagerCF =
{
&
ClassFactoryVtbl
,
ZoneMgrImpl_Construct
};
static
const
ClassFactory
StdURLMonikerCF
=
{
&
ClassFactoryVtbl
,
StdURLMoniker_Construct
};
static
const
ClassFactory
MimeFilterCF
=
{
&
ClassFactoryVtbl
,
MimeFilter_Construct
};
struct
object_creation_info
{
...
...
@@ -212,7 +214,8 @@ static const struct object_creation_info object_creation[] =
{
&
CLSID_MkProtocol
,
CLASSFACTORY
(
&
MkProtocolCF
),
wszMk
},
{
&
CLSID_InternetSecurityManager
,
CLASSFACTORY
(
&
SecurityManagerCF
),
NULL
},
{
&
CLSID_InternetZoneManager
,
CLASSFACTORY
(
&
ZoneManagerCF
),
NULL
},
{
&
CLSID_StdURLMoniker
,
CLASSFACTORY
(
&
StdURLMonikerCF
),
NULL
}
{
&
CLSID_StdURLMoniker
,
CLASSFACTORY
(
&
StdURLMonikerCF
),
NULL
},
{
&
CLSID_DeCompMimeFilter
,
CLASSFACTORY
(
&
MimeFilterCF
),
NULL
}
};
static
void
init_session
(
BOOL
init
)
...
...
dlls/urlmon/urlmon_main.h
View file @
11a6f353
...
...
@@ -45,6 +45,7 @@ extern HRESULT HttpSProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
extern
HRESULT
FtpProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
GopherProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
MkProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
MimeFilter_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
/**********************************************************************
* Dll lifetime tracking declaration for urlmon.dll
...
...
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