#define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include #include #include "resource.h" #include "Version.h" #define SETTINGSNAME "XSoundNotify" #define SETTINGSKEY "XSNPlugin_sound" struct XSN_Data { HANDLE hContact; TCHAR path[MAX_PATH]; __inline XSN_Data(HANDLE _aContact, TCHAR *_path) : hContact(_aContact) { _tcsncpy(path, _path, SIZEOF(path)); } };