1 #ifndef NATIVE_NOTIFY_H
2 #define NATIVE_NOTIFY_H
3 
4 extern bool have_focus;
5 
6 void update_tray(void);
7 void notify(char *title, uint16_t title_length, const char *msg, uint16_t msg_length, void *object, bool is_group);
8 
9 #endif
10