Welcome to mirror list, hosted at ThFree Co, Russian Federation.

redis_session.h - github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f12db2c93e644714a4084f2d595e51438cc5c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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