Patch by Colin Walters to add parameter names to NotifyActionCallback for the introspection stuff.

This commit is contained in:
Christian Hammond 2008-10-23 21:39:04 +00:00
parent d29c11ba8d
commit dcd203d082
1 changed files with 3 additions and 1 deletions

View File

@ -76,7 +76,9 @@ typedef enum
} NotifyUrgency;
typedef void (*NotifyActionCallback)(NotifyNotification *, gchar *, gpointer);
typedef void (*NotifyActionCallback)(NotifyNotification *notification,
gchar *action,
gpointer user_data);
#define NOTIFY_ACTION_CALLBACK(func) ((NotifyActionCallback)(func))