mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* Correct JS requestConfig call * Update requestWriteConfig to new API format * Add hyperion-light and bare-minimum preset scenarios * Refactor Python * Windows add bcrypt until mbedtls is fixed (https://github.com/Mbed-TLS/mbedtls/pull/9554) * Corrections * Use ScreenCaptureKit under macOS 15 and above * ReSigning macOS package * Python 3.11.10 test * Revert "Python 3.11.10 test" This reverts commit ee921e4f1284fe3d984d9422b24a1c56c6916c21. * Handle defined exits from python scripts * Update change.log * CodeQL findings --------- Co-authored-by: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com>
22 lines
336 B
C++
22 lines
336 B
C++
#pragma once
|
|
|
|
#undef slots
|
|
#include <Python.h>
|
|
#define slots Q_SLOTS
|
|
|
|
///
|
|
/// @brief Handle the PythonInit, module registers and DeInit
|
|
///
|
|
class PythonInit
|
|
{
|
|
private:
|
|
friend class HyperionDaemon;
|
|
|
|
PythonInit();
|
|
~PythonInit();
|
|
|
|
#if (PY_VERSION_HEX >= 0x03080000)
|
|
void handlePythonError(PyStatus status, PyConfig& config);
|
|
#endif
|
|
};
|