mirror of
https://github.com/php-win-ext/phpredis.git
synced 2026-03-24 09:02:07 +01:00
14 lines
383 B
C
14 lines
383 B
C
#ifndef REDIS_SENTINEL_LIBRARY_H
|
|
#define REDIS_SENTINEL_LIBRARY_H
|
|
|
|
#include "common.h"
|
|
#include "library.h"
|
|
|
|
typedef redis_object redis_sentinel_object;
|
|
|
|
zend_object *create_sentinel_object(zend_class_entry *ce);
|
|
|
|
PHP_REDIS_API int sentinel_mbulk_reply_zipped_assoc(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab, void *ctx);
|
|
|
|
#endif /* REDIS_SENTINEL_LIBRARY_H */
|