efl/src/tests/eo/constructors
Felipe Magno de Almeida 138e9e5294 eo: Rename EAPI macro to EO_API in Eo library
Summary:
Patch from a series of patches to rename EAPI symbols to specific
library DSOs.

=  The Rationale =

This patch is from a series of patches to rename EAPI symbols to
specific library DSOs.

EAPI was designed to be able to pass
`__attribute__ ((visibility ("default")))` for symbols with
GCC, which would mean that even if -fvisibility=hidden was used
when compiling the library, the needed symbols would get exported.

MSVC __almost__ works like GCC (or mingw) in which you can
declare everything as export and it will just work (slower, but
it will work). But there's a caveat: global variables will not
work the same way for MSVC, but works for mingw and GCC.

For global variables (as opposed to functions), MSVC requires
correct DSO visibility for MSVC: instead of declaring a symbol as
export for everything, you need to declare it as import when
importing from another DSO and export when defining it locally.

With current EAPI definitions, we get the following example
working in mingw and MSVC (observe it doesn't define any global
variables as exported symbols).

Example 1:
dll1:
```
EAPI void foo(void);

EAPI void bar()
{
  foo();
}
```
dll2:
```
EAPI void foo()
{
  printf ("foo\n");
}
```

This works fine with API defined as __declspec(dllexport) in both
cases and for gcc defining as
`__atttribute__((visibility("default")))`.

However, the following:
Example 2:

dll1:

```
EAPI extern int foo;
EAPI void foobar(void);

EAPI void bar()
{
  foo = 5;
  foobar();
}
```

dll2:

```
EAPI int foo = 0;
EAPI void foobar()
{
  printf ("foo %d\n", foo);
}
```

This will work on mingw but will not work for MSVC. And that's why
LIBAPI is the only solution that works for MSVC.

Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com>
Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev>

Reviewers: jptiz, lucas, vtorri, woohyun

Reviewed By: jptiz, lucas, vtorri

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12203
2020-12-09 13:52:25 -03:00
..
constructors_main.c efl: use efl_add_ref to create objects which have no parent 2018-03-20 17:20:56 -07:00
constructors_mixin.c eo: Rename EAPI macro to EO_API in Eo library 2020-12-09 13:52:25 -03:00
constructors_mixin.h eo: Rename EAPI macro to EO_API in Eo library 2020-12-09 13:52:25 -03:00
constructors_simple.c eo: remove class functions from eo 2019-02-13 16:59:59 +01:00
constructors_simple.h eo: Rename EAPI macro to EO_API in Eo library 2020-12-09 13:52:25 -03:00
constructors_simple2.c eo: remove class functions from eo 2019-02-13 16:59:59 +01:00
constructors_simple2.h
constructors_simple3.c eo: remove class functions from eo 2019-02-13 16:59:59 +01:00
constructors_simple3.h
constructors_simple4.c Adjust the EFL to the Eo class_initilizer changes. 2016-09-05 16:03:17 +01:00
constructors_simple4.h
constructors_simple5.c eo: remove class functions from eo 2019-02-13 16:59:59 +01:00
constructors_simple5.h
constructors_simple6.c eo: remove class functions from eo 2019-02-13 16:59:59 +01:00
constructors_simple6.h
constructors_simple7.c eo: remove class functions from eo 2019-02-13 16:59:59 +01:00
constructors_simple7.h
meson.build build: also build eo-tests with debug profile 2019-02-12 16:24:24 +01:00