If it's not an alias I think you probably want PHP_FE(member_function,
NULL) and use PHP_FUNCTION(member_function) in the function decleration.
Andi
At 12:06 PM 3/12/2001 -0600, Jason Greene wrote:
>Can anyone tell me what the standard is for the builtin_functions
>function_entry in OO,
>should i use a or b
>
>A)
>
>static function_entry class_function_entry = {
> PHP_FALIAS(member_fnction, php_member_function, NULL)
> {NULL, NULL,NULL}
>};
>
>B)
>
>static function_entry class_function_entry = {
> {"member_function",PHP_FN(php_member_function), NULL}
> {NULL,NULL, NULL}
>};
>
>Thanks,
>-Jason
>
>
>--
>PHP Development 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]
--
PHP Development 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]