Page 1 of 1

What is the meaning of module_config_t ?

Posted: 02 Mar 2004 05:17
by tjuwangli
I am learning the source code of the VideoLanClient. But I am puzzled with the struct module_config_t. Please tell me how can we use it?

By the way, can anyone tell me the flow chart of the VLC? If someone can answer this question, I can easily know the VLC.Thank you very much!

Posted: 02 Mar 2004 09:27
by Sigmund
you should most probably never need to use that struckt. Use add_*() macros to create configuration options, and config_Get*() config_Set*() to change the values.

You can also get the value by using var_Create with the same name and the VLC_VAR_DOINHERIT flag.