-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathClock.h
More file actions
executable file
·35 lines (31 loc) · 877 Bytes
/
Copy pathClock.h
File metadata and controls
executable file
·35 lines (31 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
**
** Clock.h
**
*/
extern APTR app_RumorOpus;
extern APTR bt_StatusBar;
extern LONG cfg_ClockRefresh;
extern LONG cfg_ClockPri;
extern BOOL cfg_ShowMem;
extern BOOL cfg_ShowClock;
extern BOOL cfg_ShowSeconds;
extern BOOL cfg_ShowDate;
extern BOOL cfg_ShowDay;
extern char global_ClockFormat[81];
extern char global_IdleStatus[41];
extern char global_GroupSeparator[2];
extern struct Library * DOSBase;
extern struct Library * IntuitionBase;
extern struct Catalog *global_Catalog;
extern struct ProcMsg *start_process (long (*)(void), long, long);
extern long wait_process (struct ProcMsg *);
struct ProcMsg * global_ClockMessage = NULL;
BOOL global_QuitClock = FALSE;
BOOL global_UpdateAllowed = TRUE;
extern LONG global_SleepClock;
void UpdateClock ( void );
void InstallClock ( void );
void RemoveClock ( void );
LONG ClockTask ( void );
char * ClockString ( void );