Implement
2001-07-30 Bradford Hovinen <hovinen@ximian.com> * location.c (location_get_config_log): Implement
This commit is contained in:
parent
e31a59e98a
commit
7a711c8ba9
3 changed files with 19 additions and 0 deletions
|
@ -1265,6 +1265,21 @@ location_does_backend_change (Location *location, Location *location1,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* location_get_config_log:
|
||||
* @location:
|
||||
*
|
||||
* Returns the config log object for this location
|
||||
*/
|
||||
|
||||
ConfigLog *
|
||||
location_get_config_log (Location *location)
|
||||
{
|
||||
g_return_val_if_fail (location != NULL, FALSE);
|
||||
g_return_val_if_fail (IS_LOCATION (location), FALSE);
|
||||
|
||||
return location->p->config_log;
|
||||
}
|
||||
|
||||
static gint
|
||||
get_backends_cb (BackendList *backend_list, gchar *backend_id,
|
||||
Location *location)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue