diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-02-20 17:47:50 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-02-20 17:47:50 +0100 |
commit | 1ca3263b1febbef86071eaaa4e8eda0bbac578fa (patch) | |
tree | 51acae08ac515eba84e01c76261a7735665dd601 /epgsearchtools.h | |
parent | 57d0cbd75c591e450e4d11a45ac6a016de48b8cf (diff) | |
download | vdr-plugin-epgsearch-1ca3263b1febbef86071eaaa4e8eda0bbac578fa.tar.gz vdr-plugin-epgsearch-1ca3263b1febbef86071eaaa4e8eda0bbac578fa.tar.bz2 |
replaced asprintf with cString::sprintf and a wrapper function
Diffstat (limited to 'epgsearchtools.h')
-rw-r--r-- | epgsearchtools.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/epgsearchtools.h b/epgsearchtools.h index 3ca85c4..89d6853 100644 --- a/epgsearchtools.h +++ b/epgsearchtools.h @@ -100,8 +100,8 @@ char *strreplacei(char *s, const char *s1, const char *s2); char *strreplaceall(char* source, char ch, const char* replacement); void sleepMSec(long ms); void sleepSec(long s); -bool SendViaSVDRP(const char* SVDRPcmd); -int SendMsg(const char* Message, bool confirm = false, int seconds = 0); +bool SendViaSVDRP(cString SVDRPcmd); +int SendMsg(cString Message, bool confirm = false, int seconds = 0); bool InEditMode(const char* ItemText, const char* ItemName, const char* ItemValue); cSearchExt* TriggeredFromSearchTimer(const cTimer* timer); int TriggeredFromSearchTimerID(const cTimer* timer); @@ -128,6 +128,7 @@ string QuoteApostroph(const string& S); string MD5(const string& input); time_t GetDateTime(time_t day, int start); void SetAux(cTimer* timer, string aux); +int msprintf(char **strp, const char *fmt, ...); // --- cTimerObj -------------------------------------------------------- class cTimerObj : public cListObject { |