Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:30233 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80507 invoked by uid 1010); 18 Jun 2007 22:12:39 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 80492 invoked from network); 18 Jun 2007 22:12:39 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Jun 2007 22:12:39 -0000 X-Host-Fingerprint: 202.56.7.134 unknown Received: from [202.56.7.134] ([202.56.7.134:19861] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 14/EA-00919-65307764 for ; Mon, 18 Jun 2007 18:12:39 -0400 Message-ID: <14.EA.00919.65307764@pb1.pair.com> To: internals@lists.php.net Reply-To: "muquaddim" References: <00.05.25319.F9955764@pb1.pair.com> Date: Mon, 18 Jun 2007 18:12:29 -0400 Lines: 21 Organization: SUST X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-RFC2646: Format=Flowed; Response X-Posted-By: 202.56.7.134 Subject: Re: documentation of php5ts.dll and .NET wrapper From: shiplu.net@gmail.com ("muquaddim") I think the configure option "--disable-zts" will work on the following lines. #ifdef ZTS #define TSRMLS_D void ***tsrm_ls #define TSRMLS_DC , TSRMLS_D #define TSRMLS_C tsrm_ls #define TSRMLS_CC , TSRMLS_C #else #define TSRMLS_D #define TSRMLS_DC #define TSRMLS_C #define TSRMLS_CC In that case my function definition will be easily understandable as I don't understand the TSRMLS_DC part. I am planning to call the php5nsapi.dll entry points. those were most easy for me. Just tell me someone, Is it the right way?