mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-01 14:04:08 +00:00
25 lines
426 B
C
25 lines
426 B
C
#ifndef TWONLY_NOTIFICATIONS_H
|
|
#define TWONLY_NOTIFICATIONS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char *twonly_notification_process(
|
|
const char *database_dir,
|
|
const char *data_dir,
|
|
const char *locale,
|
|
uint64_t deadline_ms
|
|
);
|
|
|
|
char *twonly_notification_acknowledge(const char *event_ids_json);
|
|
|
|
void twonly_notification_string_free(char *pointer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|