/*- * $Id: rr-callbacklist.h,v 1.2 2002/05/11 17:54:00 jonas Exp $ * * See the file LICENSE for redistribution information. * If you have not received a copy of the license, please contact CodeFactory * by email at info@codefactory.se, or on the web at http://www.codefactory.se/ * You may also write to: CodeFactory AB, SE-903 47, Umeå, Sweden. * * Copyright (c) 2002 Jonas Borgström * Copyright (c) 2002 Daniel Lundin * Copyright (c) 2002 CodeFactory AB. All rights reserved. */ #ifndef __RR_CALLBACKLIST_H__ #define __RR_CALLBACKLIST_H__ G_BEGIN_DECLS typedef GSList RRCallbackList; void rr_callback_list_push (RRCallbackList **list, GFunc func, gpointer data, gpointer user_data); void rr_callback_list_execute (RRCallbackList *list); void rr_callback_list_free (RRCallbackList *list); G_END_DECLS #endif /* __RR_CALLBACKLIST_H__ */