Flutter Engine
The Flutter Engine
|
#include "ffi_test_fields.h"
Go to the source code of this file.
Variables | |
DART_EXPORT_FIELD int32_t | globalInt |
DART_EXPORT_FIELD struct Coord | globalStruct |
DART_EXPORT_FIELD const char * | globalString = "Hello Dart!" |
DART_EXPORT_FIELD int | globalArray [] = {1, 2, 3} |
DART_EXPORT_FIELD double | identity3x3 [3][3] = {{1, 0, 0}, {0, 1, 0}, {0, 0, 1}} |
DART_EXPORT_FIELD int globalArray[] = {1, 2, 3} |
Definition at line 9 of file ffi_test_fields.c.
DART_EXPORT_FIELD int32_t globalInt |
Definition at line 6 of file ffi_test_fields.c.
DART_EXPORT_FIELD const char* globalString = "Hello Dart!" |
Definition at line 8 of file ffi_test_fields.c.
DART_EXPORT_FIELD struct Coord globalStruct |
Definition at line 7 of file ffi_test_fields.c.
DART_EXPORT_FIELD double identity3x3[3][3] = {{1, 0, 0}, {0, 1, 0}, {0, 0, 1}} |
Definition at line 10 of file ffi_test_fields.c.