Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Variables
ffi_test_fields.c File Reference
#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}}
 

Variable Documentation

◆ globalArray

DART_EXPORT_FIELD int globalArray[] = {1, 2, 3}

Definition at line 9 of file ffi_test_fields.c.

9{1, 2, 3};

◆ globalInt

DART_EXPORT_FIELD int32_t globalInt

Definition at line 6 of file ffi_test_fields.c.

◆ globalString

DART_EXPORT_FIELD const char* globalString = "Hello Dart!"

Definition at line 8 of file ffi_test_fields.c.

◆ globalStruct

DART_EXPORT_FIELD struct Coord globalStruct

Definition at line 7 of file ffi_test_fields.c.

◆ identity3x3

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.

10{{1, 0, 0}, {0, 1, 0}, {0, 0, 1}};