mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
15 lines
290 B
C
15 lines
290 B
C
|
|
#ifndef PACK_INLINE_H__
|
||
|
|
#define PACK_INLINE_H__
|
||
|
|
|
||
|
|
#include "pack.h"
|
||
|
|
|
||
|
|
typedef msgpack_pack_t* msgpack_pack_context;
|
||
|
|
|
||
|
|
static inline void msgpack_pack_append_buffer(msgpack_pack_t* x, const unsigned char* b, unsigned int l);
|
||
|
|
|
||
|
|
#include "msgpack/pack/inline_impl.h"
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* pack_inline.h */
|
||
|
|
|