//************************************************************************** //** //** ## ## ## ## ## #### #### ### ### //** ## ## ## ## ## ## ## ## ## ## #### #### //** ## ## ## ## ## ## ## ## ## ## ## ## ## ## //** ## ## ######## ## ## ## ## ## ## ## ### ## //** ### ## ## ### ## ## ## ## ## ## //** # ## ## # #### #### ## ## //** //** $Id: scrlib.h 1599 2006-07-06 17:20:16Z dj_jl $ //** //** Copyright (C) 1999-2006 Jānis Legzdiņš //** //** 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. //** //************************************************************************** #ifndef _SCRIPTS_H #define _SCRIPTS_H namespace VavoomUtils { // HEADER FILES ------------------------------------------------------------ // MACROS ------------------------------------------------------------------ // TYPES ------------------------------------------------------------------- // PUBLIC FUNCTION PROTOTYPES ---------------------------------------------- void SC_Open(const char *name); void SC_Close(); bool SC_GetString(); void SC_MustGetString(); void SC_MustGetStringName(const char *name); bool SC_GetNumber(); void SC_MustGetNumber(); bool SC_GetFloat(); void SC_MustGetFloat(); void SC_UnGet(); bool SC_Compare(const char *text); int SC_MatchString(const char **strings); int SC_MustMatchString(const char **strings); void SC_ScriptError(const char *message); // PUBLIC DATA DECLARATIONS ------------------------------------------------ extern char *sc_String; extern int sc_Number; extern double sc_Float; extern int sc_Line; extern bool sc_End; extern bool sc_Crossed; } // namespace #endif