diff options
author | Sascha Schumann <sas@php.net> | 2002-03-06 09:02:31 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-03-06 09:02:31 +0000 |
commit | ca59cb7cf90b10161b96b8d34d88fd8244e15272 (patch) | |
tree | 2463485fc7bc5ebbd67d4128262497ab6799eb83 /ext/session/php_session.h | |
parent | d36ddb5a9ff286d4140c56b095090a784d43016f (diff) | |
download | php-git-ca59cb7cf90b10161b96b8d34d88fd8244e15272.tar.gz |
Weep out all recent commits of Yasuo.
I don't have time right now to leave in the good ones and remove
only the bad ones.
There are some semantical changes which I reject, because
they aim at fixing a bug which is at a completely other location.
Then SID does not gefined anymore properly. (This broken patch
has not been sent to me at all.)
Also, there were *so* many whitespace changes which already
make these commits bogus.
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index 8dc308430e..5e10be2d3d 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -21,12 +21,12 @@ #include "ext/standard/php_var.h" -#define PS_OPEN_ARGS void **mod_data, const char *save_path, const char *session_name TSRMLS_DC -#define PS_CLOSE_ARGS void **mod_data TSRMLS_DC -#define PS_READ_ARGS void **mod_data, const char *key, char **val, int *vallen TSRMLS_DC -#define PS_WRITE_ARGS void **mod_data, const char *key, const char *val, const int vallen TSRMLS_DC -#define PS_DESTROY_ARGS void **mod_data, const char *key TSRMLS_DC -#define PS_GC_ARGS void **mod_data, int maxlifetime, int *nrdels TSRMLS_DC +#define PS_OPEN_ARGS void **mod_data, const char *save_path, const char *session_name +#define PS_CLOSE_ARGS void **mod_data +#define PS_READ_ARGS void **mod_data, const char *key, char **val, int *vallen +#define PS_WRITE_ARGS void **mod_data, const char *key, const char *val, const int vallen +#define PS_DESTROY_ARGS void **mod_data, const char *key +#define PS_GC_ARGS void **mod_data, int maxlifetime, int *nrdels typedef struct ps_module_struct { const char *name; |