mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2025-01-09 10:02:18 +00:00
822266b74b
Such setup is better for cross compilation. Also changed Makefile to properly make the project with these libraries.
12 lines
197 B
C
12 lines
197 B
C
#ifndef INTERNAL_H
|
|
#define INTERNAL_H 1
|
|
|
|
#include "config.h"
|
|
#ifdef HAVE_VISIBILITY_HIDDEN
|
|
# define EXPORT_SYMBOL __attribute__((visibility("default")))
|
|
#else
|
|
# define EXPORT_SYMBOL
|
|
#endif
|
|
|
|
#endif
|