summaryrefslogtreecommitdiff
path: root/main/SAPI.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-03-18 02:32:04 +0000
committerZeev Suraski <zeev@php.net>2001-03-18 02:32:04 +0000
commitd3572f74bbdf889a686c14e2bf98e17eac39efc1 (patch)
treeb7089867b1041f5e01ffbb06473b47e8a807c33d /main/SAPI.h
parentf8178f3d489fca03d96b2d841153313e591a8569 (diff)
downloadphp-git-d3572f74bbdf889a686c14e2bf98e17eac39efc1.tar.gz
These functions are not necessary - that's what sapi_register_post_entry()
and sapi_unregister_post_entry() are for... Also, please maintain K&R code layout, it's very messy to have different styles intermixed in the same codebase, and especially in the same files!
Diffstat (limited to 'main/SAPI.h')
-rw-r--r--main/SAPI.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/main/SAPI.h b/main/SAPI.h
index ef1fa971f3..535f24334f 100644
--- a/main/SAPI.h
+++ b/main/SAPI.h
@@ -146,10 +146,6 @@ SAPI_API void sapi_handle_post(void *arg SLS_DC);
SAPI_API int sapi_register_post_entries(sapi_post_entry *post_entry);
SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry);
-SAPI_API int sapi_add_post_entry(char *content_type
- , void (*post_reader)(SLS_D)
- , void (*post_handler)(char *content_type_dup, void *arg SLS_DC));
-SAPI_API void sapi_remove_post_entry(char *content_type);
SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry);
SAPI_API int sapi_register_default_post_reader(void (*default_post_reader)(SLS_D));