#ifndef __HELPERS_H__
#define __HELPERS_H__

int replaceWithXmlEntitiesWString(const wchar_t * source, wchar_t ** target, size_t sourceLength);

/**
 * Compares two messages parameter-wise. 
 * TODO: Check if this works better, if MSG.time and MSG.pt are ignored in the comparison, as they are missing in CWPSTRUCT.
 * TODO: In case of CWPSTRICT both values are per default -1. 
 */
bool MessageEquals(const MSG & msg1, const MSG & msg2);

#endif // __HELPERS_H__