Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:396 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 25337 invoked from network); 27 Mar 2003 20:36:52 -0000 Received: from unknown (HELO mxout2.netvision.net.il) (194.90.9.21) by pb1.pair.com with SMTP; 27 Mar 2003 20:36:52 -0000 Received: from moshe ([212.179.181.81]) by mxout2.netvision.net.il (iPlanet Messaging Server 5.2 HotFix 1.08 (built Dec 6 2002)) with ESMTPA id <0HCF006DHD9FS2@mxout2.netvision.net.il> for internals@lists.php.net; Thu, 27 Mar 2003 22:36:51 +0200 (IST) Date: Thu, 27 Mar 2003 22:39:41 +0200 To: internals@lists.php.net Message-ID: <027001c2f4a0$fe7461e0$b301000a@moshe> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailer: Microsoft Outlook Express 6.00.2800.1106 Content-type: text/plain; charset=windows-1255 Content-transfer-encoding: 7BIT X-Priority: 3 X-MSMail-priority: Normal Subject: zend naming conflict From: mosdoron@netvision.net.il (moshe doron) shalom, i'm writing php extension for allegro (http://www.talula.demon.co.uk/allegro/) that hopfeully 'll go somewhere soon into pecl. allegro is cross platform grafix library so in addition to the gaming capabilities, we have here chance using it as base to native php gui. the problem i have is that both zend and allegro define empty_string. so i had to replace zend & php empty_string into ze_empty_string. the question are: 1. is used on so potential common name by zend is zend compatible naming standards (if there are)? 2. is there any chance replacing the empty_string on zend & php core with ze_empty_string or something other while defining something like: #ifndef ALREADY_HAVE_EMPTY_STRING #define empty_string ze_empty_string #endif for bc. thanx moshe. ---