On Friday 31 March 2006 16:37, Andrzej Kwiatkowski wrote: > Hello. > > I'm developping my own module, and i have problem with this line: > > core_server_config *conf = > ap_get_module_config(r->server->module_config, &core_module)
Don't do that: you're breaking modularity, and going outside the API (which means a future update could break your module). Use the public APIs (available from the headers in /include/ ) instead. -- Nick Kew
