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
cbf09632
Commit
cbf09632
authored
Dec 14, 2007
by
Huw Davies
Committed by
Alexandre Julliard
Dec 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IMimeAllocator.
parent
2eab3d5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
1 deletion
+51
-1
mimeole.idl
include/mimeole.idl
+51
-1
No files found.
include/mimeole.idl
View file @
cbf09632
...
@@ -30,6 +30,7 @@ interface IMimeBody;
...
@@ -30,6 +30,7 @@ interface IMimeBody;
interface
IMimeEnumProperties
;
interface
IMimeEnumProperties
;
cpp_quote
(
"DEFINE_GUID(CLSID_IMimeBody, 0xfd853cdb, 0x7f86, 0x11d0, 0x82, 0x52, 0x0, 0xc0, 0x4f, 0xd8, 0x5a, 0xb4);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_IMimeBody, 0xfd853cdb, 0x7f86, 0x11d0, 0x82, 0x52, 0x0, 0xc0, 0x4f, 0xd8, 0x5a, 0xb4);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_IMimeAllocator, 0xfd853cdd, 0x7f86, 0x11d0, 0x82, 0x52, 0x0, 0xc0, 0x4f, 0xd8, 0x5a, 0xb4);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_IMimeMessage, 0xfd853ce3, 0x7f86, 0x11d0, 0x82, 0x52, 0x0, 0xc0, 0x4f, 0xd8, 0x5a, 0xb4);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_IMimeMessage, 0xfd853ce3, 0x7f86, 0x11d0, 0x82, 0x52, 0x0, 0xc0, 0x4f, 0xd8, 0x5a, 0xb4);"
)
cpp_quote
(
"#define MIME_E_REG_CREATE_KEY 0x800cce01"
)
cpp_quote
(
"#define MIME_E_REG_CREATE_KEY 0x800cce01"
)
...
@@ -1017,6 +1018,15 @@ cpp_quote("#endif")
...
@@ -1017,6 +1018,15 @@ cpp_quote("#endif")
]
]
interface
IMimeEnumHeaderRows
:
IUnknown
interface
IMimeEnumHeaderRows
:
IUnknown
{
{
typedef
struct
tagENUMHEADERROW
{
HHEADERROW
hRow
;
LPSTR
pszHeader
;
LPSTR
pszData
;
ULONG
cchData
;
DWORD_PTR
dwReserved
;
}
ENUMHEADERROW
,
*
LPENUMHEADERROW
;
/*
FIXME
:
fill
this
in
*/
/*
FIXME
:
fill
this
in
*/
}
}
...
@@ -1026,6 +1036,13 @@ cpp_quote("#endif")
...
@@ -1026,6 +1036,13 @@ cpp_quote("#endif")
]
]
interface
IMimeEnumProperties
:
IUnknown
interface
IMimeEnumProperties
:
IUnknown
{
{
typedef
struct
tagENUMPROPERTY
{
LPSTR
pszName
;
HHEADERROW
hRow
;
DWORD
dwPropId
;
}
ENUMPROPERTY
,
*
LPENUMPROPERTY
;
/*
FIXME
:
fill
this
in
*/
/*
FIXME
:
fill
this
in
*/
}
}
...
@@ -1062,7 +1079,40 @@ cpp_quote("#endif")
...
@@ -1062,7 +1079,40 @@ cpp_quote("#endif")
]
]
interface
IMimeAllocator
:
IMalloc
interface
IMimeAllocator
:
IMalloc
{
{
/*
FIXME
:
fill
this
in
*/
typedef
[
unique
]
IMimeAllocator
*
LPMIMEALLOCATOR
;
HRESULT
FreeParamInfoArray
(
[
in
]
ULONG
cParams
,
[
in
]
LPMIMEPARAMINFO
prgParam
,
[
in
]
boolean
fFreeArray
)
;
HRESULT
FreeAddressList
(
[
in
,
out
]
LPADDRESSLIST
pList
)
;
HRESULT
FreeAddressProps
(
[
in
,
out
]
LPADDRESSPROPS
pAddress
)
;
HRESULT
ReleaseObjects
(
[
in
]
ULONG
cObjects
,
[
in
]
IUnknown
**
prgpUnknown
,
[
in
]
boolean
fFreeArray
)
;
HRESULT
FreeEnumHeaderRowArray
(
[
in
]
ULONG
cRows
,
[
in
]
LPENUMHEADERROW
prgRow
,
[
in
]
boolean
fFreeArray
)
;
HRESULT
FreeEnumPropertyArray
(
[
in
]
ULONG
cProps
,
[
in
]
LPENUMPROPERTY
prgProp
,
[
in
]
boolean
fFreeArray
)
;
HRESULT
FreeThumbprint
(
[
in
]
THUMBBLOB
*
pthumbprint
)
;
HRESULT
PropVariantClear
(
[
in
]
LPPROPVARIANT
pProp
)
;
}
}
[
[
...
...
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