Browse Source

libobs: Add source capability flag for deprecation

jp9000 9 years ago
parent
commit
855381fc9e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      libobs/obs-source.h

+ 5 - 0
libobs/obs-source.h

@@ -115,6 +115,11 @@ enum obs_source_type {
  */
 #define OBS_SOURCE_DO_NOT_DUPLICATE (1<<7)
 
+/**
+ * Source is deprecated and should not be used
+ */
+#define OBS_SOURCE_DEPRECATED (1<<8)
+
 /** @} */
 
 typedef void (*obs_source_enum_proc_t)(obs_source_t *parent,