-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp1
More file actions
30 lines (22 loc) · 799 Bytes
/
main.cpp1
File metadata and controls
30 lines (22 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* main.cpp
*
* Created on: 27 ene. 2020
* Author: raytrapi
*/
#include <obs-module.h>
/* Defines common functions (required) */
OBS_DECLARE_MODULE()
/* Implements common ini-based locale (optional) */
OBS_MODULE_USE_DEFAULT_LOCALE("obs_bocina", "es-ES")
//extern struct obs_source_info my_source; /* Defined in my-source.c */
//extern struct obs_output_info my_output; /* Defined in my-output.c */
//extern struct obs_encoder_info my_encoder; /* Defined in my-encoder.c */
//extern struct obs_service_info my_service; /* Defined in my-service.c */
bool obs_module_load(void){
/*obs_register_source(&my_source);
obs_register_output(&my_output);
obs_register_encoder(&my_encoder);
obs_register_service(&my_service);*/
return true;
}