00001 00008 /* 00009 Copyright (C) 1997-2001 Id Software, Inc. 00010 00011 This program is free software; you can redistribute it and/or 00012 modify it under the terms of the GNU General Public License 00013 as published by the Free Software Foundation; either version 2 00014 of the License, or (at your option) any later version. 00015 00016 This program is distributed in the hope that it will be useful, 00017 but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00019 00020 See the GNU General Public License for more details. 00021 00022 You should have received a copy of the GNU General Public License 00023 along with this program; if not, write to the Free Software 00024 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00025 00026 */ 00027 00028 #include "../common/common.h" 00029 #include "../ports/system.h" 00030 00031 void CL_Init (void) 00032 { 00033 } 00034 00035 void CL_InitAfter (void) 00036 { 00037 } 00038 00039 void CL_Drop (void) 00040 { 00041 } 00042 00043 void Con_Print (const char *txt) 00044 { 00045 } 00046 00047 void CL_Shutdown (void) 00048 { 00049 } 00050 00051 void CL_Frame (int now, void *data) 00052 { 00053 } 00054 00055 void CL_SlowFrame (int now, void *data) 00056 { 00057 } 00058 00059 void CL_ParseClientData (const char *type, const char *name, const char **text) 00060 { 00061 } 00062 00063 void Cmd_ForwardToServer (void) 00064 { 00065 const char *cmd; 00066 00067 cmd = Cmd_Argv(0); 00068 Com_Printf("Unknown command \"%s\"\n", cmd); 00069 } 00070 00071 void SCR_BeginLoadingPlaque (void) 00072 { 00073 } 00074 00075 void SCR_EndLoadingPlaque (void) 00076 { 00077 } 00078 00079 int CL_Milliseconds (void) 00080 { 00081 return Sys_Milliseconds(); 00082 } 00083 00084 void Key_Init (void) 00085 { 00086 Cmd_AddCommand("bind", Cmd_Dummy_f, NULL); 00087 }