(API Change) Fix obs_service_gettype func name

Before:                After:
obs_service_gettype    obs_service_get_type

It seems there was an API function that was missed when we were doing
our big API consistency update.  Unsquishes obs_service_gettype to
obs_service_get_type.
This commit is contained in:
jp9000
2015-02-07 08:19:34 -08:00
parent 69c6714090
commit b72e68afe7
4 changed files with 5 additions and 5 deletions

View File

@@ -1295,7 +1295,7 @@ EXPORT obs_properties_t *obs_get_service_properties(const char *id);
EXPORT obs_properties_t *obs_service_properties(const obs_service_t *service);
/** Gets the service type */
EXPORT const char *obs_service_gettype(const obs_service_t *service);
EXPORT const char *obs_service_get_type(const obs_service_t *service);
/** Updates the settings of the service context */
EXPORT void obs_service_update(obs_service_t *service, obs_data_t *settings);