-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More cleanup to add flutter UI to sub projects
- Loading branch information
1 parent
91a8ac3
commit 9dcf3de
Showing
44 changed files
with
61 additions
and
16 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
software/codeFragments/jvxApplications/native-config/include/generic-native-config.h.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#ifndef __AYF_NATIVE_CONFIG_H__ | ||
#define __AYF_NATIVE_CONFIG_H__ | ||
|
||
extern "C" | ||
{ | ||
jvxErrorType flutter_config_open(native_host_configure_func_pointers* fcPtr); | ||
} | ||
|
||
#endif |
27 changes: 27 additions & 0 deletions
27
software/codeFragments/jvxApplications/native-config/src/generic-config-hook.cpp.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include "jvx.h" | ||
#include "flutter_native_host_config.h" | ||
|
||
extern "C" | ||
{ | ||
extern jvxErrorType jvx_access_link_objects(jvxInitObject_tp* funcInit, jvxTerminateObject_tp* funcTerm, jvxApiString* adescr, jvxComponentType tp, jvxSize id); | ||
extern jvxErrorType jvx_default_connection_rules_add(IjvxDataConnections* theDataConnectionDefRule); | ||
extern jvxErrorType jvx_default_sequence_add(IjvxSequencer* theSeq); | ||
extern jvxErrorType jvx_configure_factoryhost_features(configureFactoryHost_features* features); | ||
extern jvxErrorType jvx_invalidate_factoryhost_features(configureFactoryHost_features* features); | ||
} | ||
|
||
extern "C" | ||
{ | ||
jvxErrorType flutter_config_open(native_host_configure_func_pointers* fcPtr) | ||
{ | ||
if (fcPtr) | ||
{ | ||
fcPtr->access_link_objects = jvx_access_link_objects; | ||
fcPtr->configure_factoryhost_features = jvx_configure_factoryhost_features; | ||
fcPtr->invalidate_factoryhost_features = jvx_invalidate_factoryhost_features; | ||
fcPtr->default_connection_rules_add = jvx_default_connection_rules_add; | ||
fcPtr->default_sequence_add = jvx_default_sequence_add; | ||
} | ||
return JVX_NO_ERROR; | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...fstarter/sources/Applications/ayfstarter-native-config/include/ayfstarter-native-config.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#ifndef __AYFBINRENDER_NATIVE_CONFIG_H__ | ||
#define __AYFBINRENDER_NATIVE_CONFIG_H__ | ||
#ifndef __AYF_NATIVE_CONFIG_H__ | ||
#define __AYF_NATIVE_CONFIG_H__ | ||
|
||
extern "C" | ||
{ | ||
jvxErrorType flutter_config_open(native_host_configure_func_pointers* fcPtr); | ||
} | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ extern "C" | |
} | ||
return JVX_NO_ERROR; | ||
} | ||
} | ||
} |