mirror of
https://github.com/php/php-src.git
synced 2024-11-26 11:23:47 +08:00
ed58d3a235
- Removed the debugging error (not useful for end-users)
14 lines
281 B
C
14 lines
281 B
C
#ifndef RFC1867_H
|
|
#define RFC1867_H
|
|
|
|
#include "SAPI.h"
|
|
|
|
#define MULTIPART_CONTENT_TYPE "multipart/form-data"
|
|
|
|
SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler);
|
|
|
|
void destroy_uploaded_files_hash(TSRMLS_D);
|
|
void php_rfc1867_register_constants(TSRMLS_D);
|
|
|
|
#endif /* RFC1867_H */
|