diff options
author | ch1p <me@ch1p.com> | 2023-06-20 02:07:11 +0300 |
---|---|---|
committer | ch1p <me@ch1p.com> | 2023-06-20 02:07:11 +0300 |
commit | af1e3f265b89b63a943d2bdb384aa7d114172021 (patch) | |
tree | dc4e1dfcdf4be9ae6a6c7eb0ca4ddc75882b55ee /vkflex.c | |
parent | 0762f58a8664c077d106139fb1e3812135f698bd (diff) |
add arginfo for vkflex()
Diffstat (limited to 'vkflex.c')
-rw-r--r-- | vkflex.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ #include "config.h" #endif #include "php.h" +#include "vkflex_arginfo.h" #include "vkext_flex.h" #include <stdio.h> @@ -17,7 +18,7 @@ PHP_FUNCTION(vkflex); // list of custom PHP functions provided by this extension // set {NULL, NULL, NULL} as the last record to mark the end of list static zend_function_entry my_functions[] = { - PHP_FE(vkflex, NULL) + PHP_FE(vkflex, arginfo_vkflex) {NULL, NULL, NULL} }; |