1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-13 16:16:33 +01:00

Revert "Update from expat 2.1.0 to version 2.2.1..."

This reverts commit 2b146bf543, reversing
changes made to 138c188fb4.
This commit is contained in:
Paul Licameli
2017-06-29 11:27:12 -04:00
parent f3e31eca8b
commit f6d92ece82
85 changed files with 882 additions and 8074 deletions

View File

@@ -3,9 +3,8 @@
*/
#include "codepage.h"
#include "internal.h" /* for UNUSED_P only */
#if defined(_WIN32)
#if (defined(WIN32) || (defined(__WATCOMC__) && defined(__NT__)))
#define STRICT 1
#define WIN32_LEAN_AND_MEAN 1
@@ -52,18 +51,18 @@ codepageConvert(int cp, const char *p)
return -1;
}
#else /* not _WIN32 */
#else /* not WIN32 */
int
codepageMap(int UNUSED_P(cp), int *UNUSED_P(map))
codepageMap(int cp, int *map)
{
return 0;
}
int
codepageConvert(int UNUSED_P(cp), const char *UNUSED_P(p))
codepageConvert(int cp, const char *p)
{
return -1;
}
#endif /* not _WIN32 */
#endif /* not WIN32 */