mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00
18 lines
343 B
C
18 lines
343 B
C
![]() |
|
||
|
#ifndef MSGPACL_PACK_H
|
||
|
#define MSGPACL_PACK_H
|
||
|
|
||
|
#include "ext/standard/php_smart_str.h"
|
||
|
|
||
|
enum msgpack_serialize_type
|
||
|
{
|
||
|
MSGPACK_SERIALIZE_TYPE_REFERENCE = 1,
|
||
|
MSGPACK_SERIALIZE_TYPE_OBJECT,
|
||
|
MSGPACK_SERIALIZE_TYPE_CUSTOM_OBJECT,
|
||
|
};
|
||
|
|
||
|
void msgpack_serialize_zval(
|
||
|
smart_str *buf, zval *val, HashTable *var_hash TSRMLS_DC);
|
||
|
|
||
|
#endif
|