WMS_PACKET_BUFFER_EX_FLAGS

banner art

Previous Next

WMS_PACKET_BUFFER_EX_FLAGS

The WMS_PACKET_BUFFER_EX_FLAGS enumeration type identifies extended flags controlling the behavior of a buffer.

Syntax

  typedef enum WMS_PACKET_BUFFER_EX_FLAGS{
  WMS_BUFFER_COMBINE  = 0x10000000,
  WMS_BUFFER_NO_REFCOUNT  = 0x20000000,
  WMS_BUFFER_NO_RELEASE  = 0x40000000,
  WMS_BUFFER_NO_ADDREF  = 0x80000000
};

Members

WMS_BUFFER_COMBINE

The buffer should be combined with the list instead of appended to the end of it.

WMS_BUFFER_NO_REFCOUNT

No reference count should be kept for this buffer.

WMS_BUFFER_NO_RELEASE

The buffer should not be released, regardless of reference count.

WMS_BUFFER_NO_ADDREF

The reference count on the buffer should not be incremented.

Requirements

Header: wmspacket.h.

Library: WMSServerTypeLib.dll.

Platform: Windows ServerĀ 2003 family, Windows ServerĀ 2008 family.

See Also

Previous Next