mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-20 14:02:40 +02:00
Update PHP Extension
This commit is contained in:
17
php/msgpack_pack.h
Normal file
17
php/msgpack_pack.h
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
#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
|
Reference in New Issue
Block a user