anotherim-desktop/plugins/windows-notification/vapi/DinoWinToastLib.vapi

14 lines
441 B
Vala
Raw Normal View History

2020-11-25 21:55:33 +00:00
[CCode (cheader_filename = "DinoWinToastLib.h")]
namespace DinoWinToast {
[CCode (cname = "dinoWinToastLibNotificationCallback", has_target = true)]
public delegate void NotificationCallback(int conv_id);
[CCode (cname = "dinoWinToastLibInit")]
public int Init();
[CCode (cname = "dinoWinToastLibShowMessage")]
public int ShowMessage(DinoWinToastTemplate templ, int conv_id, NotificationCallback callback);
}