sbkfeature_base.h 660 B

123456789101112131415161718
  1. // Copyright (C) 2016 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. #ifndef SBKFEATURE_BASE_H
  4. #define SBKFEATURE_BASE_H
  5. extern "C"
  6. {
  7. LIBSHIBOKEN_API int currentSelectId(PyTypeObject *type);
  8. LIBSHIBOKEN_API PyObject *mangled_type_getattro(PyTypeObject *type, PyObject *name);
  9. LIBSHIBOKEN_API PyObject *Sbk_TypeGet___dict__(PyTypeObject *type, void *context);
  10. LIBSHIBOKEN_API PyObject *SbkObject_GenericGetAttr(PyObject *obj, PyObject *name);
  11. LIBSHIBOKEN_API int SbkObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value);
  12. } // extern "C"
  13. #endif // SBKFEATURE_BASE_H