File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 147147 * library.
148148 *
149149 * Also, there are several places in the libFLAC code with comments marked
150- * with "OPT:" where a #define can be changed to enable code that might be
150+ * with "OPT:" where a \ #define can be changed to enable code that might be
151151 * faster on a specific platform. Experimenting with these can yield faster
152152 * binaries.
153153 */
159159 * the libraries to newer versions of FLAC.
160160 *
161161 * One simple facility for making porting easier that has been added
162- * in FLAC 1.1.3 is a set of \c #defines in \c export.h of each
162+ * in FLAC 1.1.3 is a set of \#defines in \c export.h of each
163163 * library's includes (e.g. \c include/FLAC/export.h). The
164- * \c #defines mirror the libraries'
164+ * \#defines mirror the libraries'
165165 * <A HREF="http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning">libtool version numbers</A>,
166166 * e.g. in libFLAC there are \c FLAC_API_VERSION_CURRENT,
167167 * \c FLAC_API_VERSION_REVISION, and \c FLAC_API_VERSION_AGE.
Original file line number Diff line number Diff line change 3636/** \file include/FLAC/export.h
3737 *
3838 * \brief
39- * This module contains #defines and symbols for exporting function
39+ * This module contains \ #defines and symbols for exporting function
4040 * calls, and providing version information and compiled-in features.
4141 *
4242 * See the \link flac_export export \endlink module.
4646 * \ingroup flac
4747 *
4848 * \brief
49- * This module contains #defines and symbols for exporting function
49+ * This module contains \ #defines and symbols for exporting function
5050 * calls, and providing version information and compiled-in features.
5151 *
5252 * If you are compiling with MSVC and will link to the static library
5959#if defined(FLAC__NO_DLL )
6060#define FLAC_API
6161
62- #elif defined(_MSC_VER )
62+ #elif defined(_WIN32 )
6363#ifdef FLAC_API_EXPORTS
6464#define FLAC_API __declspec(dllexport)
6565#else
7474
7575#endif
7676
77- /** These #defines will mirror the libtool-based library version number, see
77+ /** These \ #defines will mirror the libtool-based library version number, see
7878 * http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
7979 */
8080#define FLAC_API_VERSION_CURRENT 11
You can’t perform that action at this time.
0 commit comments