Export as public symbols only those really needed, without this change
some symbols from serialize.c (get_8, get_le32, put_8, put_le32) were
public too.
Use -fvisibility=hidden so we don't need to explicitly mark symbols as
local.
endif()
add_flags(CMAKE_C_FLAGS
endif()
add_flags(CMAKE_C_FLAGS
-fno-common
-Wall
-Wextra
-fno-common
-Wall
-Wextra
# define __attribute__(x) /*NOTHING*/
#endif
# define __attribute__(x) /*NOTHING*/
#endif
+/* Control shared library symbols visibility */
+#if defined _WIN32 || defined __CYGWIN__
+ #define AM7XXX_PUBLIC __declspec(dllexport)
+ #define AM7XXX_LOCAL
+#else
+ #if __GNUC__ >= 4
+ #define AM7XXX_PUBLIC __attribute__ ((visibility ("default")))
+ #define AM7XXX_LOCAL __attribute__ ((visibility ("hidden")))
+ #else
+ #define AM7XXX_PUBLIC
+ #define AM7XXX_LOCAL
+ #endif
+#endif
+
static void log_message(am7xxx_context *ctx,
int level,
const char *function,
static void log_message(am7xxx_context *ctx,
int level,
const char *function,
-int am7xxx_init(am7xxx_context **ctx)
+/* Public API */
+
+AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx)
-void am7xxx_shutdown(am7xxx_context *ctx)
+AM7XXX_PUBLIC void am7xxx_shutdown(am7xxx_context *ctx)
{
am7xxx_device *current;
{
am7xxx_device *current;
-void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
+AM7XXX_PUBLIC void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
{
ctx->log_level = log_level;
}
{
ctx->log_level = log_level;
}
-int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
+AM7XXX_PUBLIC int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
unsigned int device_index)
{
int ret;
unsigned int device_index)
{
int ret;
-int am7xxx_close_device(am7xxx_device *dev)
+AM7XXX_PUBLIC int am7xxx_close_device(am7xxx_device *dev)
{
if (dev == NULL) {
fatal("dev must not be NULL!\n");
{
if (dev == NULL) {
fatal("dev must not be NULL!\n");
-int am7xxx_get_device_info(am7xxx_device *dev,
+AM7XXX_PUBLIC int am7xxx_get_device_info(am7xxx_device *dev,
am7xxx_device_info *device_info)
{
int ret;
am7xxx_device_info *device_info)
{
int ret;
-int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
+AM7XXX_PUBLIC int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
unsigned int upscale,
unsigned int original_width,
unsigned int original_height,
unsigned int upscale,
unsigned int original_width,
unsigned int original_height,
-int am7xxx_send_image(am7xxx_device *dev,
+AM7XXX_PUBLIC int am7xxx_send_image(am7xxx_device *dev,
am7xxx_image_format format,
unsigned int width,
unsigned int height,
am7xxx_image_format format,
unsigned int width,
unsigned int height,
return send_data(dev, image, image_size);
}
return send_data(dev, image, image_size);
}
-int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode mode)
+AM7XXX_PUBLIC int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode mode)
{
int ret;
struct am7xxx_header h = {
{
int ret;
struct am7xxx_header h = {