mirror of
git://sigrok.org/libserialport
synced 2023-08-10 21:13:24 +03:00
Use SP_API prefix for functions in libserialport.h.
For MSVC, we need to set the __declspec() for public symbols to dllexport or dllimport, depending if we are building or using the library. So, detect MSVC and define SP_API appropriately if found. We use the LIBSERIALPORT_MSBUILD define to distinguish between building and using the library, which will need to be set in the project configuration when building the library using MS tools. For normal client use of the header on other systems, we need to define SP_API to nothing to avoid it being undefined, but we need to avoid doing this in the case where we are including the header whilst building the library with autotools and SP_API is already set by autoconf. So define LIBSERIALPORT_ATBUILD in AM_CFLAGS, and don't touch SP_API in the header if that's set.
This commit is contained in:
2
Doxyfile
2
Doxyfile
@@ -2135,7 +2135,7 @@ INCLUDE_FILE_PATTERNS =
|
||||
# recursively expanded use the := operator instead of the = operator.
|
||||
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
|
||||
|
||||
PREDEFINED =
|
||||
PREDEFINED = SP_API
|
||||
|
||||
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
|
||||
# tag can be used to specify a list of macro names that should be expanded. The
|
||||
|
||||
Reference in New Issue
Block a user