Commit 3f92c5b7 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

inetcomm: Implement IMimeBody_GetProp for the primary context type.

parent 02ceeef2
...@@ -627,8 +627,19 @@ static HRESULT WINAPI MimeBody_GetProp( ...@@ -627,8 +627,19 @@ static HRESULT WINAPI MimeBody_GetProp(
DWORD dwFlags, DWORD dwFlags,
LPPROPVARIANT pValue) LPPROPVARIANT pValue)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
return E_NOTIMPL; TRACE("(%p)->(%s, %d, %p)\n", This, pszName, dwFlags, pValue);
if(!strcasecmp(pszName, "att:pri-content-type"))
{
PropVariantClear(pValue);
pValue->vt = VT_LPSTR;
pValue->u.pszVal = strdupA(This->content_pri_type);
return S_OK;
}
FIXME("stub!\n");
return E_FAIL;
} }
static HRESULT WINAPI MimeBody_SetProp( static HRESULT WINAPI MimeBody_SetProp(
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
*/ */
#define COBJMACROS #define COBJMACROS
#define NONAMELESSUNION
#include "windows.h" #include "windows.h"
#include "ole2.h" #include "ole2.h"
...@@ -216,6 +217,8 @@ static void test_CreateMessage(void) ...@@ -216,6 +217,8 @@ static void test_CreateMessage(void)
FINDBODY find_struct; FINDBODY find_struct;
char text[] = "text"; char text[] = "text";
HBODY *body_list; HBODY *body_list;
PROPVARIANT prop;
static char att_pritype[] = "att:pri-content-type";
hr = MimeOleCreateMessage(NULL, &msg); hr = MimeOleCreateMessage(NULL, &msg);
ok(hr == S_OK, "ret %08x\n", hr); ok(hr == S_OK, "ret %08x\n", hr);
...@@ -247,6 +250,14 @@ static void test_CreateMessage(void) ...@@ -247,6 +250,14 @@ static void test_CreateMessage(void)
IMimeBody_Release(body); IMimeBody_Release(body);
hr = IMimeMessage_GetBody(msg, IBL_ROOT, NULL, &hbody); hr = IMimeMessage_GetBody(msg, IBL_ROOT, NULL, &hbody);
PropVariantInit(&prop);
hr = IMimeMessage_GetBodyProp(msg, hbody, att_pritype, 0, &prop);
ok(hr == S_OK, "ret %08x\n", hr);
ok(prop.vt == VT_LPSTR, "vt %08x\n", prop.vt);
ok(!strcasecmp(prop.u.pszVal, "multipart"), "got %s\n", prop.u.pszVal);
PropVariantClear(&prop);
hr = IMimeMessage_GetBody(msg, IBL_FIRST, hbody, &hbody); hr = IMimeMessage_GetBody(msg, IBL_FIRST, hbody, &hbody);
ok(hr == S_OK, "ret %08x\n", hr); ok(hr == S_OK, "ret %08x\n", hr);
hr = IMimeMessage_BindToObject(msg, hbody, &IID_IMimeBody, (void**)&body); hr = IMimeMessage_BindToObject(msg, hbody, &IID_IMimeBody, (void**)&body);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment