mirror of
https://github.com/php-win-ext/phpredis.git
synced 2026-03-24 00:52:16 +01:00
16 lines
226 B
C
16 lines
226 B
C
#ifndef REDIS_SESSION_H
|
|
#define REDIS_SESSION_H
|
|
|
|
#include "ext/session/php_session.h"
|
|
|
|
PS_OPEN_FUNC(redis);
|
|
PS_CLOSE_FUNC(redis);
|
|
PS_READ_FUNC(redis);
|
|
PS_WRITE_FUNC(redis);
|
|
PS_DESTROY_FUNC(redis);
|
|
PS_GC_FUNC(redis);
|
|
|
|
|
|
#endif
|
|
|