aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/libpyside/pysidecleanup.h
blob: cc5bbb0e64b192c33006ea02ddc255003e172b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef PYSIDECLEANUP_H
#define PYSIDECLEANUP_H

#include <pysidemacros.h>

namespace PySide
{

using CleanupFunction = void(*)();

/// Register a function to be called before python dies
PYSIDE_API void registerCleanupFunction(CleanupFunction func);
PYSIDE_API void runCleanupFunctions();

} //namespace PySide

#endif // PYSIDECLEANUP_H