Remove version parameter from obs_module_load

Replaced by obs_get_version() API
This commit is contained in:
jp9000
2014-07-27 12:42:43 -07:00
parent 59ea3becf2
commit f0ac19abba
19 changed files with 19 additions and 51 deletions

View File

@@ -5,12 +5,9 @@ OBS_MODULE_USE_DEFAULT_LOCALE("mac-avcapture", "en-US")
extern struct obs_source_info av_capture_info;
bool obs_module_load(uint32_t libobs_version)
bool obs_module_load(void)
{
UNUSED_PARAMETER(libobs_version);
obs_register_source(&av_capture_info);
return true;
}