// This file is a part of the Framsticks GDK library. // Copyright (C) 2002-2013 Szymon Ulatowski. See LICENSE.txt for details. // Refer to http://www.framsticks.com/ for further information. #ifndef _STDERRORS_H_ #define _STDERRORS_H_ #include "list.h" #include "sstring.h" bool listIndexCheck(SList* list,int index,char* msgobj,char* msgfun); SString stringCheck(SString& in,char* msgobj,char* msgfun,char* msg,SString (*checker)(SString& in)=0); #endif