Reputation: 875
Take this line for example from mod_lbmethod_bybusyness.c:
module AP_MODULE_DECLARE_DATA lbmethod_bybusyness_module;
I don't know of a module
keyword in C, what is this?
Upvotes: 0
Views: 45
Reputation: 843
There is no module
keyword in C. It seems to be a typedef
made in the projet (see http_config.h).
Upvotes: 2