Displaying 1 result from an estimated 1 matches for "struct_name_module_context".
2014 Jul 24
0
Problems with custom plugin
...STER(obj), (id_ctx).reg)
Obviously the module context nowadays expects another attribute/struct
named "reg". However, I cannot find any information about this within
the documentation and plugin mentioned above. The only clue I have got
yet is the definition in module-context.h:
union STRUCT_NAME_module_context {
struct STRUCT_NAME_module_register *reg;
// it's allowed to have some structure here so it won't waste
space.
// for example: struct STRUCT_NAME_vfuncs super;
};
However, I still cannot make any sense of it (yet).
Could you please help me in filling t...