php-src/mod_php4.h

61 lines
2.4 KiB
C
Raw Normal View History

1999-04-07 21:05:13 +00:00
/*
+----------------------------------------------------------------------+
| PHP HTML Embedded Scripting Language Version 3.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997,1998 PHP Development Team (See Credits file) |
+----------------------------------------------------------------------+
| This program is free software; you can redistribute it and/or modify |
| it under the terms of one of the following licenses: |
| |
| A) 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. |
| |
| B) the PHP License as published by the PHP Development Team and |
| included in the distribution in the file: LICENSE |
| |
| 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 both licenses referred to here. |
| If you did not, or have any questions about PHP licensing, please |
| contact core@php.net. |
+----------------------------------------------------------------------+
1999-05-28 03:54:15 +00:00
| Authors: Rasmus Lerdorf <rasmus@php.net> |
1999-04-07 21:05:13 +00:00
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-05-28 03:54:15 +00:00
#ifndef _MOD_PHP4_H
#define _MOD_PHP4_H
1999-04-07 21:05:13 +00:00
#if !defined(WIN32) && !defined(WINNT)
#ifndef MODULE_VAR_EXPORT
#define MODULE_VAR_EXPORT
#endif
#endif
typedef struct {
long engine;
long last_modified;
char *dav_script;
1999-04-10 16:25:23 +00:00
long xbithack;
1999-04-10 17:39:08 +00:00
} php_apache_info_struct;
extern php_apache_info_struct php_apache_info;
1999-04-07 21:05:13 +00:00
#if MSVC5
#define S_IXUSR _S_IEXEC
#endif
1999-05-28 03:54:15 +00:00
#endif /* _MOD_PHP4_H */
1999-04-07 21:05:13 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/