Now that we have the priorties window in we can finally be able to select windows for capture source such as window capture. Only took about an hour or two to write. Also, fixed some depednency issues on winmm.lib with obs-outputs
16 lines
332 B
C
16 lines
332 B
C
#include <obs-module.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
extern struct obs_source_info monitor_capture_info;
|
|
extern struct obs_source_info window_capture_info;
|
|
|
|
bool obs_module_load(uint32_t libobs_ver)
|
|
{
|
|
obs_register_source(&monitor_capture_info);
|
|
obs_register_source(&window_capture_info);
|
|
|
|
UNUSED_PARAMETER(libobs_ver);
|
|
return true;
|
|
}
|