diff options
| author | Sander Roobol <sander@php.net> | 2002-04-16 14:19:09 +0000 |
|---|---|---|
| committer | Sander Roobol <sander@php.net> | 2002-04-16 14:19:09 +0000 |
| commit | c18338b84e8507d962d4c2954e57c2b6d8e9d74d (patch) | |
| tree | d79c97e8e3a7f94fc31d0327cd7907dcec2ba07d /ext/w32api/w32api.c | |
| parent | 5d7b69f43e05c969f7163bc5bcb365ce35875ab3 (diff) | |
| download | php-git-c18338b84e8507d962d4c2954e57c2b6d8e9d74d.tar.gz | |
Added missing function to function_entry
Diffstat (limited to 'ext/w32api/w32api.c')
| -rw-r--r-- | ext/w32api/w32api.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/w32api/w32api.c b/ext/w32api/w32api.c index c3513e5f20..89190d3175 100644 --- a/ext/w32api/w32api.c +++ b/ext/w32api/w32api.c @@ -41,7 +41,8 @@ function_entry w32api_functions[] = { PHP_FE(w32api_deftype, NULL) PHP_FE(w32api_init_dtype, NULL) PHP_FE(w32api_set_call_method, NULL) - {NULL, NULL, NULL} + PHP_FE(w32api_invoke_function, NULL) + {NULL, NULL, NULL} }; /* }}} */ @@ -895,4 +896,4 @@ PHP_FUNCTION(w32api_init_dtype) /* }}} */ -#endif /* HAVE_W32API */
\ No newline at end of file +#endif /* HAVE_W32API */ |
