mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-15 16:39:32 +08:00
20 lines
1.0 KiB
Objective-C
20 lines
1.0 KiB
Objective-C
//go:build darwin
|
|
|
|
#ifndef NOTIFICATIONS_DARWIN_H
|
|
#define NOTIFICATIONS_DARWIN_H
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
bool checkBundleIdentifier(void);
|
|
void requestNotificationAuthorization(int channelID);
|
|
void checkNotificationAuthorization(int channelID);
|
|
void sendNotification(const char *identifier, const char *title, const char *subtitle, const char *body, const char *data_json, void *completion);
|
|
void sendNotificationWithActions(const char *identifier, const char *title, const char *subtitle, const char *body, const char *categoryId, const char *actions_json, void *completion);
|
|
void registerNotificationCategory(const char *categoryId, const char *actions_json, bool hasReplyField, const char *replyPlaceholder, const char *replyButtonTitle);
|
|
void removeNotificationCategory(const char *categoryId);
|
|
void removeAllPendingNotifications(void);
|
|
void removePendingNotification(const char *identifier);
|
|
void removeAllDeliveredNotifications(void);
|
|
void removeDeliveredNotification(const char *identifier);
|
|
|
|
#endif /* NOTIFICATIONS_DARWIN_H */ |