-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathderbar.h
37 lines (29 loc) · 1017 Bytes
/
derbar.h
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
36
37
//**********************************************************************
// Copyright (c) 2009-2022 Daniel D Miller
// derbar.exe - Another WinBar application
// derbar.h: global declarations
//
// Written by: Daniel D. Miller
//**********************************************************************
extern HINSTANCE g_hinst ;
extern HBRUSH hbEdit ;
extern COLORREF fgnd_edit ;
extern COLORREF bgnd_edit ;
// config.cpp
extern uint x_pos ;
extern uint y_pos ;
extern uint tbar_on ;
extern bool keep_on_top ;
extern bool use_logon_time_for_uptime ;
extern bool show_seconds_for_uptime ;
// extern uint ip_iface_idx ; // 0 means read all, otherwise read selected iface
// function prototypes
LRESULT save_cfg_file(void);
LRESULT read_config_file(void);
void update_uptime_label(void);
// ClearIcon.cpp
extern unsigned ci_attr ;
unsigned select_color(COLORREF orig_attr);
void reset_icon_colors(bool my_select_color);
// options.cpp
extern bool show_winmsgs ;