Added member for dll_handle

FossilOrigin-Name: c213101ee622a070350930076dacedb61b48c6804c0519e75ae536b7b7ca0b96
This commit is contained in:
7u83@mail.ru 2018-02-26 08:15:59 +00:00
parent 0e2245cc83
commit bd5f542f41
1 changed files with 5 additions and 3 deletions

View File

@ -66,9 +66,11 @@ struct cw_Mod {
struct cw_MsgSet * (*register_messages)(struct cw_MsgSet set, int mode);
/**
* Handle returned by dlopen, if this module was loaded dynamically
* with dlopen */
void * handle;
* Handle returned by dlopen, if this module was loaded
* dynamically with dlopen. If this module was statically
* linked, dll_handle is NULL.
*/
void * dll_handle;
};