diff options
Diffstat (limited to 'plugins/PluginUpdater/src/Notifications.h')
-rw-r--r-- | plugins/PluginUpdater/src/Notifications.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/PluginUpdater/src/Notifications.h b/plugins/PluginUpdater/src/Notifications.h index f21581221a..1d8544ba63 100644 --- a/plugins/PluginUpdater/src/Notifications.h +++ b/plugins/PluginUpdater/src/Notifications.h @@ -21,12 +21,12 @@ Boston, MA 02111-1307, USA. //=== Objects =====
//This one is used to easily tie status id, icon, text...
-typedef struct
+struct aPopups
{
int ID;
COLORREF colorBack;
COLORREF colorText;
-} aPopups;
+};
#define DEFAULT_POPUP_LCLICK 1
#define DEFAULT_POPUP_RCLICK 0
@@ -52,12 +52,12 @@ typedef struct #define PCA_DONOTHING 1 // do nothing
//===== Options flags
-typedef struct tagMYOPTIONS {
+extern struct POPUP_OPTIONS {
BYTE DefColors;
BYTE LeftClickAction;
BYTE RightClickAction;
int Timeout;
-} POPUP_OPTIONS;
+} PopupOptions;
static struct {
TCHAR *Text;
|