Displaying 3 results from an estimated 3 matches for "cleanup_tempfile_".
2016 Jan 09
0
Lets do a 1.3.2 release
...9;:
flac/src/libFLAC/metadata_iterators.c:424: undefined reference to `fopen_utf8'
libFLAC.a(metadata_iterators.release.o): In function `open_tempfile_':
flac/src/libFLAC/metadata_iterators.c:3284: undefined reference to `fopen_utf8'
libFLAC.a(metadata_iterators.release.o): In function `cleanup_tempfile_':
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:...
2016 Jan 09
3
Lets do a 1.3.2 release
lvqcl wrote:
>>> Win_utf8 stuff should not be included in libflac since it's only to be
>>> used by the flac.exe frontend. It is not needed by other programs nor
>>> would they benefit from it without doing the extra work of converting
>>> their ansi filenames and functions to utf-8.
>>>
>>>> Version 2 of my patch attached, which fixes
2007 Jul 14
2
PATCH : Fix missing protoypes
...rything up to set_file_stats_() is copied from libFLAC/metadata_iterators.c
*/
+static
FLAC__bool open_tempfile_(const char *filename, FILE **tempfile, char **tempfilename)
{
static const char *tempfile_suffix = ".metadata_edit";
@@ -199,6 +201,7 @@
return true;
}
+static
void cleanup_tempfile_(FILE **tempfile, char **tempfilename)
{
if(0 != *tempfile) {
@@ -213,6 +216,7 @@
}
}
+static
FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tempfilename)
{
FLAC__ASSERT(0 != filename);
@@ -243,6 +247,7 @@
return true;
}
+static
FLAC__bool get_file_sta...