|
From: David G. <dav...@us...> - 2005-04-01 11:55:52
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv329/Common/headers Modified Files: Tag: mysql-embedded-experimental-branch frontierdefs.h kernelverbdefs.h Added Files: Tag: mysql-embedded-experimental-branch langmysql.h Log Message: First cut at mysql code, simply adding verb stubs. Index: frontierdefs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/frontierdefs.h,v retrieving revision 1.7 retrieving revision 1.7.4.1 diff -C2 -d -r1.7 -r1.7.4.1 *** frontierdefs.h 11 Jan 2005 22:48:01 -0000 1.7 --- frontierdefs.h 1 Apr 2005 11:55:43 -0000 1.7.4.1 *************** *** 33,36 **** --- 33,37 ---- #define __FRONTIERDEFS_H__ + #define FRONTIER_MYSQL /* 2005-03-31 dgewirtz: Main conditional define for mysql embedded functionality */ #ifdef WIN95VERSION Index: kernelverbdefs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/kernelverbdefs.h,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** kernelverbdefs.h 13 Jan 2005 23:54:18 -0000 1.5 --- kernelverbdefs.h 1 Apr 2005 11:55:43 -0000 1.5.2.1 *************** *** 51,52 **** --- 51,53 ---- #define idregexpverbs 1023 /*2003-04-22 AR: regular expression verbs*/ #define idmathverbs 1024 /*2004-12-29 SMD: extended math verbs*/ + #define idmysqlverbs 1025 /*2005-03-31 DG: mysql embedded verbs*/ --- NEW FILE: langmysql.h --- /* $Id: langmysql.h,v 1.1.2.1 2005/04/01 11:55:43 davidgewirtz Exp $ */ /****************************************************************************** UserLand Frontier(tm) -- High performance Web content management, object database, system-level and Internet scripting environment, including source code editing and debugging. Copyright (C) 1992-2004 UserLand 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 the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ #ifdef FRONTIER_MYSQL extern boolean testverb (hdltreenode, tyvaluerecord *); extern boolean mysqlinitverbs (void); #endif /*FRONTIER_MYSQL*/ |