diff options
Diffstat (limited to 'plugins/XSoundNotify/src/stdafx.h')
-rw-r--r-- | plugins/XSoundNotify/src/stdafx.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/XSoundNotify/src/stdafx.h b/plugins/XSoundNotify/src/stdafx.h index a04427e9f8..47e1176e07 100644 --- a/plugins/XSoundNotify/src/stdafx.h +++ b/plugins/XSoundNotify/src/stdafx.h @@ -22,15 +22,17 @@ struct XSN_Data
{
- MCONTACT hContact;
+ LPARAM hContact;
wchar_t path[MAX_PATH];
BYTE ignore;
+ BYTE iscontact;
- __forceinline XSN_Data(MCONTACT _aContact, wchar_t *_path, BYTE _ignore) :
+ __forceinline XSN_Data(LPARAM _aContact, wchar_t *_path, BYTE _ignore, BYTE _iscontact) :
hContact(_aContact)
{
wcsncpy(path, _path, _countof(path));
ignore = _ignore;
+ iscontact = _iscontact;
}
};
|