1 // Protocol Buffers - Google's data interchange format 2 // Copyright 2023 Google LLC. All rights reserved. 3 // 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file or at 6 // https://developers.google.com/open-source/licenses/bsd 7 8 #ifndef PYUPB_EXTENSION_DICT_H__ 9 #define PYUPB_EXTENSION_DICT_H__ 10 11 #include <stdbool.h> 12 13 #include "python/python_api.h" 14 15 PyObject* PyUpb_ExtensionDict_New(PyObject* msg); 16 17 bool PyUpb_InitExtensionDict(PyObject* m); 18 19 #endif // PYUPB_EXTENSION_DICT_H__ 20