RETERR CALLBACK NdiGetFlags(HNDI hndi, LPDWORD lpdwFlags) HNDI hndi // handle to NDI object to query LPDWORD lpdwFlags // a point to the buffer to return the flags
The NdiGetFlags function is used to get the flags of a particular NDI object.
hndi
A handle to the object to query
lpdwFlags
The address of a buffer to hold the returned flags. These flags are:
Flag | Description |
NDIF_ADDED | The object has just been added. |
NDIF_REMOVED | The object has just been removed. |
NDIF_MODIFIED_BINDINGS | The bindings of the object have just been changed. |
NDIF_MODIFIED_PROPERTIES | The properties of the object have just been changed. |
NDIF_DEFAULT | This object is the default object for its class. |
NDIF_INVISIBLE | This object does not appear in the Configuration page UI. |
NDIF_HAS_PARAMS | This object has an Advanced properties tab. |