eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- // The Visual C++ C Runtime deprecates several standard library functions in
- // preference for _s variants that are specific to Visual C++. This removes
- // those deprecation warnings.
- #define _CRT_SECURE_NO_WARNINGS
-
- // The Visual C++ C Runtime deprecates standard POSIX APIs that conflict with
- // reserved ISO C names (like strdup) in favour of non-portable conforming
- // variants that start with an '_'. This removes those deprecation warnings.
- #define _CRT_NONSTDC_NO_DEPRECATE
-
- // This is created by autoconf on POSIX-compatibe build environments.
- #define PACKAGE_VERSION "1.51-dev"
|