aboutsummaryrefslogtreecommitdiff
path: root/src/kernel
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2022-02-10 21:38:32 -0500
committerCarl Dong <contact@carldong.me>2022-04-26 16:30:53 -0400
commit1df44dd20ca9e6e55eb353824b27d11bd1878c59 (patch)
tree0d8eb87fe824cc6b493511570e8bba96f2acdc5b /src/kernel
parent83a0bb7cc9907dbe089409ed5a417277ed63ed95 (diff)
downloadbitcoin-1df44dd20ca9e6e55eb353824b27d11bd1878c59.tar.xz
b-cs: Define G_TRANSLATION_FUN in bitcoinkernel.cpp
[META] This is done in preparation for extracting libbitcoinkernel in a following commit. It seems logical that generally users of a library shouldn't need to export its own symbols to use the library.
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/bitcoinkernel.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/kernel/bitcoinkernel.cpp b/src/kernel/bitcoinkernel.cpp
new file mode 100644
index 0000000000..bb101ba186
--- /dev/null
+++ b/src/kernel/bitcoinkernel.cpp
@@ -0,0 +1,10 @@
+// Copyright (c) 2022 The Bitcoin Core developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#include <functional>
+#include <string>
+
+// Define G_TRANSLATION_FUN symbol in libbitcoinkernel library so users of the
+// library aren't required to export this symbol
+extern const std::function<std::string(const char*)> G_TRANSLATION_FUN = nullptr;