You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.3 KiB
67 lines
1.3 KiB
/*
|
|
|
|
Copyright (c) 1997-1999 Microsoft Corporation
|
|
|
|
*/
|
|
|
|
#include "sdppch.h"
|
|
|
|
#include "sdpbstrl.h"
|
|
#include <oleauto.h>
|
|
|
|
#include "sdpsatt.h"
|
|
#include "sdpatt.h"
|
|
|
|
|
|
|
|
|
|
HRESULT
|
|
SDP_ATTRIBUTE_SAFEARRAY::GetSafeArray(
|
|
OUT VARIANT *Variant
|
|
)
|
|
{
|
|
return SDP_SAFEARRAY_WRAP::GetSafeArrays((DWORD)m_TList.GetSize(), 1, m_VarType, &Variant);
|
|
}
|
|
|
|
|
|
|
|
|
|
BOOL
|
|
SDP_ATTRIBUTE_SAFEARRAY::Get(
|
|
IN SDP_CHAR_STRING_LINE &ListMember,
|
|
IN ULONG NumEntries,
|
|
IN void **Element,
|
|
OUT HRESULT &HResult
|
|
)
|
|
{
|
|
ASSERT(1 == NumEntries);
|
|
|
|
Element[0] = NULL;
|
|
HResult = ListMember.GetBstring().GetBstr((BSTR *)&Element[0]);
|
|
|
|
return SUCCEEDED(HResult);
|
|
}
|
|
|
|
|
|
BOOL
|
|
SDP_ATTRIBUTE_SAFEARRAY::Set(
|
|
IN SDP_CHAR_STRING_LINE &ListMember,
|
|
IN ULONG NumEntries,
|
|
IN void ***Element,
|
|
OUT HRESULT &HResult
|
|
)
|
|
{
|
|
ASSERT(1 == NumEntries);
|
|
|
|
// a null element in the FIRST safearray means that no more entries are present
|
|
if ( (NULL == Element[0]) || (NULL == *(Element[0])) )
|
|
{
|
|
HResult = S_OK;
|
|
return FALSE;
|
|
}
|
|
|
|
HResult = ListMember.SetBstr(*((BSTR *)Element[0]));
|
|
|
|
return SUCCEEDED(HResult);
|
|
}
|
|
|