diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-29 16:44:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-29 16:44:55 +0200 |
commit | 0873d146141bb86a24f2e9806b73362f49bc7d52 (patch) | |
tree | 075bd386ac9dceb4064d354c7613ae2a2a6bfd29 /skins.h | |
parent | 712523f0040ec18846ded1dea8d1838e80566f02 (diff) | |
download | vdr-0873d146141bb86a24f2e9806b73362f49bc7d52.tar.gz vdr-0873d146141bb86a24f2e9806b73362f49bc7d52.tar.bz2 |
If cSkins::Message() is called from a background thread and Type is not mtStatus, the call is now automatically forwarded to QueueMessage()
Diffstat (limited to 'skins.h')
-rw-r--r-- | skins.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skins.h 4.5 2017/11/02 15:04:56 kls Exp $ + * $Id: skins.h 4.6 2019/05/29 16:36:41 kls Exp $ */ #ifndef __SKINS_H @@ -477,6 +477,8 @@ public: ///< has been received within Seconds (the default value of 0 results ///< in the value defined for "Message time" in the setup), kNone ///< will be returned. + ///< If Message() is called from a background thread and Type is not + ///< mtStatus, the call will be automatically forwarded to QueueMessage(). int QueueMessage(eMessageType Type, const char *s, int Seconds = 0, int Timeout = 0); ///< Like Message(), but this function may be called from a background ///< thread. The given message is put into a queue and the main program |