tweaks to build libs as DLLs under windows

This commit is contained in:
Josh Coalson
2002-10-16 22:29:47 +00:00
parent 18db4f4678
commit 6afed9fc7f
24 changed files with 557 additions and 551 deletions

View File

@@ -30,10 +30,12 @@
* Prototypes *
**************/
char* FLAC_plugin__charset_get_current (void);
char* FLAC_plugin__charset_convert_string (const char *string, char *from, char *to);
#include "export.h"
PLUGIN_COMMON_API char *FLAC_plugin__charset_get_current();
PLUGIN_COMMON_API char *FLAC_plugin__charset_convert_string(const char *string, char *from, char *to);
/* returns 1 for success, 0 for failure or no iconv */
int FLAC_plugin__charset_test_conversion (char *from, char *to);
PLUGIN_COMMON_API int FLAC_plugin__charset_test_conversion(char *from, char *to);
#endif