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

@@ -21,9 +21,8 @@ OBS_MODULE_USE_DEFAULT_LOCALE("linux-v4l2", "en-US")
extern struct obs_source_info v4l2_input;
bool obs_module_load(uint32_t obs_version)
bool obs_module_load(void)
{
UNUSED_PARAMETER(obs_version);
obs_register_source(&v4l2_input);
return true;
}