12345678910111213141516171819202122232425262728293031 |
- #ifndef DL_H
- #define DL_H
- PHPAPI int php_load_extension(const char *filename, int type, int start_now);
- PHPAPI void php_dl(const char *file, int type, zval *return_value, int start_now);
- PHPAPI void *php_load_shlib(const char *path, char **errp);
- PHPAPI PHP_FUNCTION(dl);
- PHP_MINFO_FUNCTION(dl);
- #endif
|