/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ipc/context.h
19 строк
728 B
MarcoFalke
scripted-diff: [doc] Unify stale copyright headers
17 дек 2025, 00:21
17 дек 2025, 00:21
fa5f297
Код
Авторство
О чём код?
// Copyright (c) 2021-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_IPC_CONTEXT_H #define BITCOIN_IPC_CONTEXT_H namespace ipc { //! Context struct used to give IPC protocol implementations or implementation //! hooks access to application state, in case they need to run extra code that //! isn't needed within a single process, like code copying global state from an //! existing process to a new process when it's initialized, or code dealing //! with shared objects that are created or destroyed remotely. struct Context { }; } // namespace ipc #endif // BITCOIN_IPC_CONTEXT_H