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
2fa80dac
Commit
2fa80dac
authored
Sep 11, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Sep 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Add a missing function and fix some idl.
parent
ef180ec3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
mimeintl.c
dlls/inetcomm/mimeintl.c
+8
-0
mimeole.idl
include/mimeole.idl
+7
-4
No files found.
dlls/inetcomm/mimeintl.c
View file @
2fa80dac
...
...
@@ -308,6 +308,13 @@ static HRESULT WINAPI MimeInternat_GetCodePageInfo(IMimeInternational *iface, CO
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeInternat_CanConvertCodePages
(
IMimeInternational
*
iface
,
CODEPAGEID
cpiSource
,
CODEPAGEID
cpiDest
)
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MimeInternat_DecodeHeader
(
IMimeInternational
*
iface
,
HCHARSET
hCharset
,
LPCSTR
pszData
,
LPPROPVARIANT
pDecoded
,
...
...
@@ -390,6 +397,7 @@ static IMimeInternationalVtbl mime_internat_vtbl =
MimeInternat_FindCharset
,
MimeInternat_GetCharsetInfo
,
MimeInternat_GetCodePageInfo
,
MimeInternat_CanConvertCodePages
,
MimeInternat_DecodeHeader
,
MimeInternat_EncodeHeader
,
MimeInternat_ConvertBuffer
,
...
...
include/mimeole.idl
View file @
2fa80dac
...
...
@@ -252,6 +252,9 @@ library MIMEOLE
HRESULT
GetCodePageInfo
(
[
in
]
CODEPAGEID
cpiCodePage
,
[
in
,
out
]
LPCODEPAGEINFO
pCodePageInfo
)
;
HRESULT
CanConvertCodePages
(
[
in
]
CODEPAGEID
cpiSource
,
[
in
]
CODEPAGEID
cpiDest
)
;
HRESULT
DecodeHeader
(
[
in
]
HCHARSET
hCharset
,
[
in
]
LPCSTR
pszData
,
...
...
@@ -273,22 +276,22 @@ library MIMEOLE
[
in
]
CODEPAGEID
cpiDest
,
[
in
]
LPPROPVARIANT
pIn
,
[
in
,
out
]
LPPROPVARIANT
pOut
)
;
HRESULT
MLANG_ConvertInetReset
()
;
HRESULT
MLANG_ConvertInetReset
(
void
)
;
HRESULT
MLANG_ConvertInetString
(
[
in
]
CODEPAGEID
cpiSource
,
[
in
]
CODEPAGEID
cpiDest
,
[
in
]
LPCSTR
pSource
,
[
in
]
int
*
pnSizeOfSource
,
[
out
]
LPSTR
pDestination
,
[
in
,
out
,
unique
]
LPSTR
pDestination
,
[
in
]
int
*
pnDstSize
)
;
HRESULT
Rfc1522Decode
(
[
in
]
LPCSTR
pszValue
,
[
in
]
LPCSTR
pszCharset
,
[
in
,
ref
]
LPCSTR
pszCharset
,
[
in
]
ULONG
cchmax
,
[
out
]
LPSTR
*
ppszDecoded
)
;
HRESULT
Rfc1522Encode
(
[
in
]
LPCSTR
pszValue
,
[
in
]
HCHARSET
hCharset
,
[
in
]
HCHARSET
hCharset
,
[
out
]
LPSTR
*
ppszEncoded
)
;
}
...
...
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