diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-06 13:17:38 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-06 13:17:38 +0000 |
commit | 713cf8c9233010b01b17d8e88e51c2da52298ae8 (patch) | |
tree | cf6b2171d6092480e09954b5a49b5ee736e040b2 /plugins/XSoundNotify/src/Common.h | |
parent | f6625332602cf4e9ea0297744a70c8eb4bb5d4b9 (diff) |
added ignore sound checkbox
git-svn-id: http://svn.miranda-ng.org/main/trunk@4329 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify/src/Common.h')
-rw-r--r-- | plugins/XSoundNotify/src/Common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/XSoundNotify/src/Common.h b/plugins/XSoundNotify/src/Common.h index 3b5edc0daa..bec554f4aa 100644 --- a/plugins/XSoundNotify/src/Common.h +++ b/plugins/XSoundNotify/src/Common.h @@ -19,15 +19,18 @@ #define SETTINGSNAME "XSoundNotify"
#define SETTINGSKEY "XSNPlugin_sound"
+#define SETTINGSIGNOREKEY "XSNPlugin_ignore"
struct XSN_Data
{
HANDLE hContact;
TCHAR path[MAX_PATH];
+ BYTE ignore;
- __forceinline XSN_Data(HANDLE _aContact, TCHAR *_path) :
+ __forceinline XSN_Data(HANDLE _aContact, TCHAR *_path, BYTE _ignore) :
hContact(_aContact)
{
_tcsncpy(path, _path, SIZEOF(path));
+ ignore = _ignore;
}
};
\ No newline at end of file |