swu_target_t

Handle of an UpdateTarget

Synopsis:

#include <swu/Common.h>

typedef void* swu_target_t;

Library:

libswu-core

Use the -l swu-core option with qcc to link against the SWU library. This library is usually included automatically.

Description:

The swu_target_t data type stores the handle of an UpdateTarget, which is a type of swu_object. In the SWU library API, UpdateTarget objects are represented by swu_target_t handles. Because each UpdateTarget object is reference-counted, you must call swu_object_retain() to increase the reference count and maintain access to an UpdateTarget. Any swu_target_t that has its reference count increased this way must be released later with swu_object_release() when no longer needed.