diff --git a/mutella/common.h b/mutella/common.h --- a/mutella/common.h +++ b/mutella/common.h @@ -50,7 +50,7 @@ CString restore_string(CString s, bool bFormMode = true); bool QueryMatch(CString Result, const CString& Query); // fast functions which do not copy the string void MakeWordList(LPSTR szQuery, vector& QWords); -void MakeWordList(LPSTR szQuery, vector& QWords, vector& QWords); +void MakeWordList(LPSTR szQuery, vector& QWordsInc, vector&QWordsExc); bool MatchWordList(const CString& ResultLower, const vector& QWords, bool bMatchAll = true); // slower but 'storage-independent' versions diff --git a/mutella/mutella.h b/mutella/mutella.h --- a/mutella/mutella.h +++ b/mutella/mutella.h @@ -79,6 +79,7 @@ using std::insert_iterator; #include #include #include +#include // library-type includes #include "defines.h" diff --git a/mutella/tstring.h b/mutella/tstring.h --- a/mutella/tstring.h +++ b/mutella/tstring.h @@ -22,6 +22,7 @@ #define __TSTRING_H__INCLUDED__ #include +#include #include #ifdef TSTRING_DEBUG