Flutter Linux Embedder
fl_standard_message_codec.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_SHELL_PLATFORM_LINUX_FL_STANDARD_MESSAGE_CODEC_H_
6 #define FLUTTER_SHELL_PLATFORM_LINUX_FL_STANDARD_MESSAGE_CODEC_H_
7 
8 #if !defined(__FLUTTER_LINUX_INSIDE__) && !defined(FLUTTER_LINUX_COMPILATION)
9 #error "Only <flutter_linux/flutter_linux.h> can be included directly."
10 #endif
11 
12 #include <gmodule.h>
13 
14 #include "fl_message_codec.h"
15 
16 G_BEGIN_DECLS
17 
18 G_MODULE_EXPORT
19 G_DECLARE_FINAL_TYPE(FlStandardMessageCodec,
20  fl_standard_message_codec,
21  FL,
22  STANDARD_CODEC,
23  FlMessageCodec)
24 
25 /**
26  * FlStandardMessageCodec:
27  *
28  * #FlStandardMessageCodec is an #FlMessageCodec that implements the Flutter
29  * standard message encoding. This codec encodes and decodes #FlValue of type
30  * #FL_VALUE_TYPE_NULL, #FL_VALUE_TYPE_BOOL, #FL_VALUE_TYPE_INT,
31  * #FL_VALUE_TYPE_FLOAT, #FL_VALUE_TYPE_STRING, #FL_VALUE_TYPE_UINT8_LIST,
32  * #FL_VALUE_TYPE_INT32_LIST, #FL_VALUE_TYPE_INT64_LIST,
33  * #FL_VALUE_TYPE_FLOAT_LIST, #FL_VALUE_TYPE_LIST, and #FL_VALUE_TYPE_MAP.
34  *
35  * #FlStandardMessageCodec matches the StandardCodec class in the Flutter
36  * services library.
37  */
38 
39 /*
40  * fl_standard_message_codec_new:
41  *
42  * Creates an #FlStandardMessageCodec.
43  *
44  * Returns: a new #FlStandardMessageCodec.
45  */
46 FlStandardMessageCodec* fl_standard_message_codec_new();
47 
48 G_END_DECLS
49 
50 #endif // FLUTTER_SHELL_PLATFORM_LINUX_FL_STANDARD_MESSAGE_CODEC_H_
fl_standard_message_codec_new
G_MODULE_EXPORT FlStandardMessageCodec * fl_standard_message_codec_new()
Definition: fl_standard_message_codec.cc:458
fl_message_codec.h
FL
FL
Definition: fl_binary_messenger.cc:27
G_DECLARE_FINAL_TYPE
G_BEGIN_DECLS G_MODULE_EXPORT G_DECLARE_FINAL_TYPE(FlStandardMessageCodec, fl_standard_message_codec, FL, STANDARD_CODEC, FlMessageCodec) FlStandardMessageCodec *fl_standard_message_codec_new()