efl/src/lib/evas/include
Felipe Magno de Almeida 89b839600e evas: Rename EAPI macro to EVAS_API in Evas library
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>
2020-12-14 13:22:00 -03:00
..
evas_blend_ops.h Get rid of trailing whitespaces (12 / 14) 2020-06-23 10:31:22 +02:00
evas_common_private.h evas: Rename EAPI macro to EVAS_API in Evas library 2020-12-14 13:22:00 -03:00
evas_common_types.h build - evas - sse3 optimized code - decouple from eo 2018-11-12 16:42:17 +00:00
evas_ector_buffer.eo eolian: ban void_ptr in stable APIs 2019-07-26 13:35:27 +02:00
evas_filter.h evas: Rename EAPI macro to EVAS_API in Evas library 2020-12-14 13:22:00 -03:00
evas_inline.x canvas 3d: remove all canvas3d features across efl. 2020-03-25 19:14:02 +09:00
evas_macros.h efl: everyone should now rely on Eina MIN/MAX redefinition. 2016-05-09 16:58:53 -07:00
evas_mmx.h
evas_options.h
evas_private.h evas: Rename EAPI macro to EVAS_API in Evas library 2020-12-14 13:22:00 -03:00
meson.build evas: Rename EAPI macro to EVAS_API in Evas library 2020-12-14 13:22:00 -03:00