From 9aa7c9a48e9342a450c3078e15c8d7923a338ede Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Thu, 11 Apr 2019 23:32:29 -0700 Subject: [PATCH] Export extern constants in embedder.h (#8550) PR #8498 made these constants extern, but forgot to export them so they would be public symbols. --- shell/platform/embedder/embedder.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/platform/embedder/embedder.h b/shell/platform/embedder/embedder.h index 9b6bd2478c07e..3068a30befe20 100644 --- a/shell/platform/embedder/embedder.h +++ b/shell/platform/embedder/embedder.h @@ -343,6 +343,7 @@ typedef struct { // |FlutterSemanticsNode| ID used as a sentinel to signal the end of a batch of // semantics node updates. +FLUTTER_EXPORT extern const int32_t kFlutterSemanticsNodeIdBatchEnd; // A node that represents some semantic data. @@ -414,6 +415,7 @@ typedef struct { // |FlutterSemanticsCustomAction| ID used as a sentinel to signal the end of a // batch of semantics custom action updates. +FLUTTER_EXPORT extern const int32_t kFlutterSemanticsCustomActionIdBatchEnd; // A custom semantics action, or action override.