From 6956c8a88c7206fe32a5e1ada5cc825f44bdb072 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 (flutter/engine#8550) PR #8498 made these constants extern, but forgot to export them so they would be public symbols. --- engine/src/flutter/shell/platform/embedder/embedder.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/src/flutter/shell/platform/embedder/embedder.h b/engine/src/flutter/shell/platform/embedder/embedder.h index 9b6bd2478c0..3068a30befe 100644 --- a/engine/src/flutter/shell/platform/embedder/embedder.h +++ b/engine/src/flutter/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.