DSDM_SETPROP

This message sets the current value of a property to the value stored in the buffer pointed to by pData.

typedef struct {
  DWORD dwMsg;
  DWORD dwInstance;
  LPGUID pGUID;
  ULONG ulPropId;
  PVOID pParams;
  ULONG cbParams;
  PVOID pData;
  ULONG cbData;
} DSDMP_SETPROP;

Members

  • dwMsg
    Equals DSDM_SETPROP.
  • dwInstance
    Instance data for the DirectSound buffer.
  • pGUID
    Pointer to a property set GUID.
  • ulPropId
    The identifier of the property within the set.
  • pParams
    Parameters for the set call.
  • cbParams
    Size of the object pointed to by pParams in bytes.
  • pData
    Data to set for this item.
  • cbData
    Number of bytes pointed to by pData.

Return Values

Return values are determined by the designer of the property set.

Remarks

For more information about property sets, see Property Sets and IKsPropertySet::Set.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Dsdriver.h.

See Also

Property Sets | IKsPropertySet::Set | DirectSound Driver Messages

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.