1234567891011121314151617181920212223242526272829303132 |
- #ifndef PHP_OPEN_TEMPORARY_FILE_H
- #define PHP_OPEN_TEMPORARY_FILE_H
- BEGIN_EXTERN_C()
- PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC);
- PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, char **opened_path_p, zend_bool open_basedir_check TSRMLS_DC);
- PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC);
- PHPAPI const char *php_get_temporary_directory(TSRMLS_D);
- PHPAPI void php_shutdown_temporary_directory(void);
- END_EXTERN_C()
- #endif
|