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
48d393bd
Commit
48d393bd
authored
Nov 04, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added https protocol class factory stub implementation.
parent
0fa98982
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
http.c
dlls/urlmon/http.c
+6
-0
urlmon_main.c
dlls/urlmon/urlmon_main.c
+4
-0
urlmon_main.h
dlls/urlmon/urlmon_main.h
+1
-0
No files found.
dlls/urlmon/http.c
View file @
48d393bd
...
...
@@ -943,3 +943,9 @@ HRESULT HttpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
return
S_OK
;
}
HRESULT
HttpSProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
)
{
FIXME
(
"(%p %p)
\n
"
,
pUnkOuter
,
ppobj
);
return
E_NOINTERFACE
;
}
dlls/urlmon/urlmon_main.c
View file @
48d393bd
...
...
@@ -181,6 +181,8 @@ static const ClassFactory FtpProtocolCF =
{
&
ClassFactoryVtbl
,
FtpProtocol_Construct
};
static
const
ClassFactory
HttpProtocolCF
=
{
&
ClassFactoryVtbl
,
HttpProtocol_Construct
};
static
const
ClassFactory
HttpSProtocolCF
=
{
&
ClassFactoryVtbl
,
HttpSProtocol_Construct
};
static
const
ClassFactory
MkProtocolCF
=
{
&
ClassFactoryVtbl
,
MkProtocol_Construct
};
static
const
ClassFactory
SecurityManagerCF
=
...
...
@@ -198,6 +200,7 @@ struct object_creation_info
static
const
WCHAR
wszFile
[]
=
{
'f'
,
'i'
,
'l'
,
'e'
,
0
};
static
const
WCHAR
wszFtp
[]
=
{
'f'
,
't'
,
'p'
,
0
};
static
const
WCHAR
wszHttp
[]
=
{
'h'
,
't'
,
't'
,
'p'
,
0
};
static
const
WCHAR
wszHttps
[]
=
{
'h'
,
't'
,
't'
,
'p'
,
's'
,
0
};
static
const
WCHAR
wszMk
[]
=
{
'm'
,
'k'
,
0
};
static
const
struct
object_creation_info
object_creation
[]
=
...
...
@@ -205,6 +208,7 @@ static const struct object_creation_info object_creation[] =
{
&
CLSID_FileProtocol
,
CLASSFACTORY
(
&
FileProtocolCF
),
wszFile
},
{
&
CLSID_FtpProtocol
,
CLASSFACTORY
(
&
FtpProtocolCF
),
wszFtp
},
{
&
CLSID_HttpProtocol
,
CLASSFACTORY
(
&
HttpProtocolCF
),
wszHttp
},
{
&
CLSID_HttpSProtocol
,
CLASSFACTORY
(
&
HttpSProtocolCF
),
wszHttps
},
{
&
CLSID_MkProtocol
,
CLASSFACTORY
(
&
MkProtocolCF
),
wszMk
},
{
&
CLSID_InternetSecurityManager
,
CLASSFACTORY
(
&
SecurityManagerCF
),
NULL
},
{
&
CLSID_InternetZoneManager
,
CLASSFACTORY
(
&
ZoneManagerCF
),
NULL
}
...
...
dlls/urlmon/urlmon_main.h
View file @
48d393bd
...
...
@@ -29,6 +29,7 @@ extern HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
extern
HRESULT
ZoneMgrImpl_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
FileProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
HttpProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
HttpSProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
FtpProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
extern
HRESULT
MkProtocol_Construct
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppobj
);
...
...
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