Update PHP Extension

This commit is contained in:
advect
2010-07-17 18:46:28 +09:00
parent a97f9081a3
commit 78f542f6c0
71 changed files with 7345 additions and 2108 deletions

17
php/msgpack_pack.h Normal file
View 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