SimpleFileSync/c_libs/notification.h
2023-05-19 14:43:13 -04:00

12 lines
240 B
C

#ifndef NOTIFICATION_H
#define NOTIFICATION_H
#include <stdio.h>
typedef struct Notification {
FILE *icon;
char title[16];
char message[];
} Notification;
int buildNotification(char title[], char message[], FILE *icon);
#endif