Adam Cozzette | 501ecec | 2023-09-26 14:36:20 -0700 | [diff] [blame] | 1 | // Protocol Buffers - Google's data interchange format |
| 2 | // Copyright 2023 Google LLC. All rights reserved. |
Adam Cozzette | 501ecec | 2023-09-26 14:36:20 -0700 | [diff] [blame] | 3 | // |
Protobuf Team Bot | 0fab773 | 2023-11-20 13:38:15 -0800 | [diff] [blame] | 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 |
Adam Cozzette | 501ecec | 2023-09-26 14:36:20 -0700 | [diff] [blame] | 7 | |
| 8 | #ifndef PYUPB_UNKNOWN_FIELDS_H__ |
| 9 | #define PYUPB_UNKNOWN_FIELDS_H__ |
| 10 | |
| 11 | #include <stdbool.h> |
| 12 | |
| 13 | #include "python/python_api.h" |
| 14 | |
| 15 | PyObject* PyUpb_UnknownFields_New(PyObject* msg); |
| 16 | |
| 17 | bool PyUpb_UnknownFields_Init(PyObject* m); |
| 18 | |
| 19 | #endif // PYUPB_UNKNOWN_FIELDS_H__ |