[PHP-CVS] cvs: php-src /main SAPI.h

2008-12-31 Thread Marcus Boerger
helly   Wed Dec 31 17:33:29 2008 UTC

  Modified files:  
/php-src/main   SAPI.h 
  Log:
  - Add needed include as reported by Pierre
  
http://cvs.php.net/viewvc.cgi/php-src/main/SAPI.h?r1=1.126r2=1.127diff_format=u
Index: php-src/main/SAPI.h
diff -u php-src/main/SAPI.h:1.126 php-src/main/SAPI.h:1.127
--- php-src/main/SAPI.h:1.126   Wed Dec 31 11:12:38 2008
+++ php-src/main/SAPI.h Wed Dec 31 17:33:29 2008
@@ -16,12 +16,13 @@
+--+
 */
 
-/* $Id: SAPI.h,v 1.126 2008/12/31 11:12:38 sebastian Exp $ */
+/* $Id: SAPI.h,v 1.127 2008/12/31 17:33:29 helly Exp $ */
 
 #ifndef SAPI_H
 #define SAPI_H
 
 #include zend.h
+#include zend_API.h
 #include zend_llist.h
 #include zend_operators.h
 #ifdef PHP_WIN32



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /main SAPI.h

2007-08-31 Thread Jani Taskinen
janiFri Aug 31 07:43:28 2007 UTC

  Modified files:  
/php-src/main   SAPI.h 
  Log:
  ws
  
http://cvs.php.net/viewvc.cgi/php-src/main/SAPI.h?r1=1.119r2=1.120diff_format=u
Index: php-src/main/SAPI.h
diff -u php-src/main/SAPI.h:1.119 php-src/main/SAPI.h:1.120
--- php-src/main/SAPI.h:1.119   Mon Jan  1 09:29:35 2007
+++ php-src/main/SAPI.h Fri Aug 31 07:43:28 2007
@@ -16,7 +16,7 @@
+--+
 */
 
-/* $Id: SAPI.h,v 1.119 2007/01/01 09:29:35 sebastian Exp $ */
+/* $Id: SAPI.h,v 1.120 2007/08/31 07:43:28 jani Exp $ */
 
 #ifndef SAPI_H
 #define SAPI_H
@@ -107,9 +107,9 @@
char *current_user;
int current_user_length;
 
-/* this is necessary for CLI module */
-int argc;
-char **argv;
+   /* this is necessary for CLI module */
+   int argc;
+   char **argv;
int proto_num;
 } sapi_request_info;
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /main SAPI.h

2004-08-20 Thread Frank M. Kromann
fmk Fri Aug 20 23:09:45 2004 EDT

  Modified files:  
/php-src/main   SAPI.h 
  Log:
  Fix win32 compilation. Missing uid_t and gid_t definitions.
  
http://cvs.php.net/diff.php/php-src/main/SAPI.h?r1=1.109r2=1.110ty=u
Index: php-src/main/SAPI.h
diff -u php-src/main/SAPI.h:1.109 php-src/main/SAPI.h:1.110
--- php-src/main/SAPI.h:1.109   Tue Aug 10 13:40:00 2004
+++ php-src/main/SAPI.h Fri Aug 20 23:09:45 2004
@@ -16,7 +16,7 @@
+--+
 */
 
-/* $Id: SAPI.h,v 1.109 2004/08/10 17:40:00 rasmus Exp $ */
+/* $Id: SAPI.h,v 1.110 2004/08/21 03:09:45 fmk Exp $ */
 
 #ifndef SAPI_H
 #define SAPI_H
@@ -24,6 +24,9 @@
 #include zend.h
 #include zend_llist.h
 #include zend_operators.h
+#ifdef PHP_WIN32
+#include win95nt.h
+#endif
 #include sys/stat.h
 
 #define SAPI_OPTION_NO_CHDIR 1

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /main SAPI.h

2003-11-30 Thread Derick Rethans
derick  Sun Nov 30 15:07:59 2003 EDT

  Modified files:  
/php-src/main   SAPI.h 
  Log:
  - Fixed standard wrapper for input filter.
  
  
Index: php-src/main/SAPI.h
diff -u php-src/main/SAPI.h:1.106 php-src/main/SAPI.h:1.107
--- php-src/main/SAPI.h:1.106   Sat Nov 29 10:24:35 2003
+++ php-src/main/SAPI.h Sun Nov 30 15:07:58 2003
@@ -16,7 +16,7 @@
+--+
 */
 
-/* $Id: SAPI.h,v 1.106 2003/11/29 15:24:35 derick Exp $ */
+/* $Id: SAPI.h,v 1.107 2003/11/30 20:07:58 derick Exp $ */
 
 #ifndef SAPI_H
 #define SAPI_H
@@ -276,7 +276,7 @@
 #define SAPI_POST_HANDLER_FUNC(post_handler) void post_handler(char 
*content_type_dup, void *arg TSRMLS_DC)
 
 #define SAPI_TREAT_DATA_FUNC(treat_data) void treat_data(int arg, char *str, zval* 
destArray TSRMLS_DC)
-#define SAPI_INPUT_FILTER_FUNC(input_filter) unsigned int input_filter(int arg, char 
*var, char **val, unsigned int val_len TSRMLS_DC)
+#define SAPI_INPUT_FILTER_FUNC(input_filter) unsigned int input_filter(int arg, char 
*var, char **val, unsigned int val_len, unsigned int *new_val_len TSRMLS_DC)
 
 BEGIN_EXTERN_C()
 SAPI_API SAPI_POST_READER_FUNC(sapi_read_standard_form_data);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php