Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
gmlog.h
1/* Renegade Scripts.dll
2 Copyright 2013 Tiberian Technologies
3
4 This file is part of the Renegade scripts.dll
5 The Renegade scripts.dll is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 2, or (at your option) any later
8 version. See the file COPYING for more details.
9 In addition, an exemption is given to allow Run Time Dynamic Linking of this code with any closed source module that does not contain code covered by this licence.
10 Only the source code to the module(s) containing the licenced code has to be released.
11*/
12#ifndef TT_INCLUDE_GMLOG_H
13#define TT_INCLUDE_GMLOG_H
14
15class SCRIPTS_API SSGMGameLog {
16public:
17 static void Init(unsigned short port);
18 static void Log_Message(const char *message,const char *category);
19 static void Log_Gamelog(const char *format,...);
20 static void Log_RenLog(const char *message);
21 static void Log_Custom(int id,const char *format,...);
22 static void Send_Console(const char *message);
23 static void Shutdown();
24 static void Think();
25 static void Send(const char *data);
26};
27
28#endif