From f00091f340122f3fc0a3c6d7da2aff8a83f5506d Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Sun, 16 Aug 2009 00:25:59 -0700 Subject: Beginnings of a Python extension. --- lang_ext/python/definition.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lang_ext/python/definition.h (limited to 'lang_ext/python/definition.h') diff --git a/lang_ext/python/definition.h b/lang_ext/python/definition.h new file mode 100644 index 0000000..8731b8a --- /dev/null +++ b/lang_ext/python/definition.h @@ -0,0 +1,34 @@ +/* + * upb - a minimalist implementation of protocol buffers. + * + * Copyright (c) 2009 Joshua Haberman. See LICENSE for details. + * + * See def.h for a general description. These definitions + * must be shared so that specific Python message types (for the + * different proto APIs) can have access to the C definitions. */ + +#ifndef UPB_PYTHON_DEFINITION_H_ +#define UPB_PYTHON_DEFINITION_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct { + PyObject_HEAD + struct upb_msgdef *def; +} PyUpb_MessageDefinition; + +extern PyTypeObject PyUpb_MessageDefinitionType; + +/* What format string should be passed to PyArg_ParseTuple to get just a raw + * string of bytes and a length. */ +extern const char *bytes_format; + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif -- cgit v1.2.3