blob: 819016a0ae9c5aad71de7e40bbb069db64ee513f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _FRAME_INC
#define _FRAME_INC
#include "alarmlist.h"
#include "icons.h"
#include "options.h"
void RefreshReminderFrame();
void InitFrames();
void DeinitFrames();
// update 'show/hide reminder frame' menu item
void FixMainMenu();
// used when no multiwindow functionality avaiable
bool ReminderFrameVisible();
void SetReminderFrameVisible(bool visible);
#endif
|