At 14:51 16.02.2001 +0000, Madhon wrote:
>a have been looking for the function definitions u mention and cant find
>them in any of
>the source files that i have
>have u any ideas about this if u want to see the zend_ini.h and zend_ini.c i
>can email them to u
in the folder zend you'll find the files zend_ini.c and zend_ini.h.
edit zend_ini.h, there you'll find the lines:
int zend_ini_mstartup(void);
int zend_ini_mshutdown(void);
int zend_ini_rshutdown(void);
void zend_ini_sort_entries(void);
changed them to:
ZEND_API int zend_ini_mstartup(void);
ZEND_API int zend_ini_mshutdown(void);
ZEND_API int zend_ini_rshutdown(void);
ZEND_API void zend_ini_sort_entries(void);
now edit zend_ini.c and changed the function definitions there as well.
int zend_ini_mstartup()
{
ZEND_API int zend_ini_mstartup()
{
...
got it? then recompile.
daniel
/*--
daniel beulshausen - [EMAIL PROTECTED]
using php on windows? http://www.php4win.de
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]