mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-31 18:51:12 +00:00
17 lines
544 B
Cap'n Proto
17 lines
544 B
Cap'n Proto
# Copyright (c) 2021 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
@0xf2c5cfa319406aa6;
|
|
|
|
using Cxx = import "/capnp/c++.capnp";
|
|
$Cxx.namespace("ipc::capnp::messages");
|
|
|
|
using Proxy = import "/mp/proxy.capnp";
|
|
$Proxy.include("interfaces/init.h");
|
|
$Proxy.includeTypes("ipc/capnp/init-types.h");
|
|
|
|
interface Init $Proxy.wrap("interfaces::Init") {
|
|
construct @0 (threadMap: Proxy.ThreadMap) -> (threadMap :Proxy.ThreadMap);
|
|
}
|