diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdchat/src/chat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/stdchat/src/chat.h b/src/core/stdchat/src/chat.h index da522f8b67..6c10e9f557 100644 --- a/src/core/stdchat/src/chat.h +++ b/src/core/stdchat/src/chat.h @@ -68,6 +68,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "version.h"
#include "richutil.h"
+struct TABLIST
+{
+ TCHAR* pszID;
+ char* pszModule;
+ TABLIST *next;
+};
+
struct GlobalLogSettings : public GlobalLogSettingsBase
{
BOOL TabsEnable;
|