Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 251555
Collapse All | Expand All

(-)mutella-0.4.5b/mutella/common.h (-1 / +1 lines)
Lines 50-56 CString restore_string(CString s, bool b Link Here
50
bool QueryMatch(CString Result, const CString& Query);
50
bool QueryMatch(CString Result, const CString& Query);
51
// fast functions which do not copy the string
51
// fast functions which do not copy the string
52
void MakeWordList(LPSTR szQuery, vector<char*>& QWords);
52
void MakeWordList(LPSTR szQuery, vector<char*>& QWords);
53
void MakeWordList(LPSTR szQuery, vector<char*>& QWords, vector<char*>& QWords);
53
void MakeWordList(LPSTR szQuery, vector<char*>& QWordsInc, vector<char*>& QWords);
54
bool MatchWordList(const CString& ResultLower, const vector<char*>& QWords, bool bMatchAll = true);
54
bool MatchWordList(const CString& ResultLower, const vector<char*>& QWords, bool bMatchAll = true);
55
55
56
// slower but 'storage-independent' versions
56
// slower but 'storage-independent' versions
(-)mutella-0.4.5b/mutella/tstring.h (+1 lines)
Lines 23-28 Link Here
23
23
24
#include <stdarg.h>
24
#include <stdarg.h>
25
#include <iostream>
25
#include <iostream>
26
#include <climits>
26
27
27
#ifdef TSTRING_DEBUG
28
#ifdef TSTRING_DEBUG
28
29
(-)mutella-0.4.5b/mutella/conversions.h (-1 / +1 lines)
Lines 19-27 Link Here
19
    copyright            : (C) 2001 by
19
    copyright            : (C) 2001 by
20
    email                : maksik@gmx.co.uk
20
    email                : maksik@gmx.co.uk
21
 ***************************************************************************/
21
 ***************************************************************************/
22
23
#if !defined(__CONVERSIONS_H_INCLUDED__)
22
#if !defined(__CONVERSIONS_H_INCLUDED__)
24
#define __CONVERSIONS_H_INCLUDED__
23
#define __CONVERSIONS_H_INCLUDED__
24
#include <cstring>
25
25
26
CString DWrdtoStr(DWORD);     // Convert DWORD to a CString
26
CString DWrdtoStr(DWORD);     // Convert DWORD to a CString
27
27
(-)mutella-0.4.5b/mutella/gnumarkedfiles.cpp (+1 lines)
Lines 10-15 Link Here
10
#include "config.h"
10
#include "config.h"
11
#endif
11
#endif
12
12
13
#include <cstring>
13
#include "mutella.h"
14
#include "mutella.h"
14
#include "structures.h"
15
#include "structures.h"
15
16

Return to bug 251555