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
b0a069dc
Commit
b0a069dc
authored
Sep 25, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Add a stub implementation of IIMAPTransport.
parent
181d2fb6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
0 deletions
+7
-0
Makefile.in
dlls/inetcomm/Makefile.in
+1
-0
imaptransport.c
dlls/inetcomm/imaptransport.c
+0
-0
inetcomm_main.c
dlls/inetcomm/inetcomm_main.c
+3
-0
inetcomm_private.h
dlls/inetcomm/inetcomm_private.h
+3
-0
No files found.
dlls/inetcomm/Makefile.in
View file @
b0a069dc
...
...
@@ -7,6 +7,7 @@ IMPORTLIB = inetcomm
IMPORTS
=
uuid oleaut32 ole32 ws2_32 user32 advapi32 kernel32
C_SRCS
=
\
imaptransport.c
\
inetcomm_main.c
\
internettransport.c
\
mimeintl.c
\
...
...
dlls/inetcomm/imaptransport.c
0 → 100644
View file @
b0a069dc
This diff is collapsed.
Click to expand it.
dlls/inetcomm/inetcomm_main.c
View file @
b0a069dc
...
...
@@ -147,6 +147,9 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
TRACE
(
"%s %s %p
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
),
ppv
);
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_IIMAPTransport
))
return
IMAPTransportCF_Create
(
iid
,
ppv
);
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_IMimeBody
))
{
cf
=
(
IClassFactory
*
)
&
mime_body_cf
.
lpVtbl
;
...
...
dlls/inetcomm/inetcomm_private.h
View file @
b0a069dc
...
...
@@ -33,6 +33,7 @@ struct InternetTransport
{
const
IInternetTransportVtbl
*
vtbl
;
const
ISMTPTransportVtbl
*
vtblSMTP
;
const
IIMAPTransportVtbl
*
vtblIMAP
;
}
u
;
ITransportCallback
*
pCallback
;
...
...
@@ -73,3 +74,5 @@ HRESULT MimeBody_create(IUnknown *outer, void **obj);
HRESULT
MimeAllocator_create
(
IUnknown
*
outer
,
void
**
obj
);
HRESULT
MimeInternational_Construct
(
IMimeInternational
**
internat
);
HRESULT
IMAPTransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
);
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