Le mardi 11 octobre 2022 à 13:00 +0800, LIU Hao a écrit :
> you may try
>
> ```
> __attribute__((__gnu_inline__))
> extern inline
> int g_strcmp0(const char*, const char*)
> { ...
> ```
Thanks, I gave that a try but I get many: multiple definition of
`g_strcmp0'. But at least the warning about dllimport is now gone.
> In contrast to C, you don't need the `extern` in C++.
>
> When this function is being defined in a DLL, `__dllexport__` should
> be used in place of
> `__gnu_inline__`. This may require another macro, similar to
> `GLIB_API`.