extern here is literally C `extern`, not DLL exported functions,
see libs/tk/ztk/ztk/atkversion.h
```
#ifndef _ATK_EXTERN
#define _ATK_EXTERN extern
#endif
```
This commit is contained in:
Robin Gareus
2025-02-28 21:19:52 +01:00
parent 84183968b2
commit a76acf34f8

View File

@@ -13,6 +13,4 @@
/* defines how to decorate public symbols while building */
#ifdef _MSC_VER
#define _ATK_EXTERN __declspec (dllexport) extern
#else
#define _ATK_EXTERN __attribute__((visibility("default"))) __declspec (dllexport) extern
#endif