From 29d24aa409371bd0252b34eb54b1adcb256ca2a1 Mon Sep 17 00:00:00 2001 From: Lauro Moura Date: Tue, 30 Jul 2019 11:05:26 -0300 Subject: csharp: Add marshal support for Eina.ValueType Summary: It uses a custom marshaler and a helper boxing class to convert between the managed enum values and the native Eina_Value_Type pointers. To be used by future MVVM machinery. Reviewers: vitor.sousa, felipealmeida Reviewed By: vitor.sousa Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9443 --- src/lib/efl_mono/efl_custom_exports_mono.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib/efl_mono') diff --git a/src/lib/efl_mono/efl_custom_exports_mono.c b/src/lib/efl_mono/efl_custom_exports_mono.c index aa2572f49d..590bb4e784 100644 --- a/src/lib/efl_mono/efl_custom_exports_mono.c +++ b/src/lib/efl_mono/efl_custom_exports_mono.c @@ -421,6 +421,9 @@ EAPI const Eina_Value_Type *type_array() { EAPI const Eina_Value_Type *type_list() { return EINA_VALUE_TYPE_LIST; } +EAPI const Eina_Value_Type *type_hash() { + return EINA_VALUE_TYPE_HASH; +} EAPI const Eina_Value_Type *type_error() { return EINA_VALUE_TYPE_ERROR; } -- cgit v1.2.1