mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
74e9f89e8c
a couple of c files that no longer need it.
48 lines
1.6 KiB
C
48 lines
1.6 KiB
C
/*
|
|
info.h
|
|
|
|
(server|local)info definitions and prototypes
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#ifndef _INFO_H
|
|
#define _INFO_H
|
|
|
|
#include <stdlib.h> // for size_t. sys/types.h SHOULD be used, but can't :(bc)
|
|
#include <QF/qtypes.h>
|
|
|
|
#define MAX_INFO_STRING 512
|
|
#define MAX_SERVERINFO_STRING 512
|
|
#define MAX_LOCALINFO_STRING 32768
|
|
|
|
qboolean Info_FilterForKey (const char *key, const char **filter_list);
|
|
void Info_Print (const char *s);
|
|
void Info_RemoveKey (char *s, const char *key);
|
|
void Info_RemovePrefixedKeys (char *start, char prefix, const char **filter_list);
|
|
void Info_SetValueForKey (char *s, const char *key, const char *value, size_t maxsize, int flags);
|
|
void Info_SetValueForStarKey (char *s, const char *key, const char *value, size_t maxsize, int flags);
|
|
const char *Info_ValueForKey (const char *s, const char *key);
|
|
qboolean Info_Validate (const char *s);
|
|
|
|
#endif // _INFO_H
|