mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
revamp MSVC build system, separate dynamic and static builds, separate debug and release intermediate directories
This commit is contained in:
@@ -31,21 +31,21 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
GRABBAG_API void grabbag__file_copy_metadata(const char *srcpath, const char *destpath);
|
||||
GRABBAG_API off_t grabbag__file_get_filesize(const char *srcpath);
|
||||
GRABBAG_API const char *grabbag__file_get_basename(const char *srcpath);
|
||||
void grabbag__file_copy_metadata(const char *srcpath, const char *destpath);
|
||||
off_t grabbag__file_get_filesize(const char *srcpath);
|
||||
const char *grabbag__file_get_basename(const char *srcpath);
|
||||
|
||||
/* read_only == false means "make file writable by user"
|
||||
* read_only == true means "make file read-only for everyone"
|
||||
*/
|
||||
GRABBAG_API FLAC__bool grabbag__file_change_stats(const char *filename, FLAC__bool read_only);
|
||||
FLAC__bool grabbag__file_change_stats(const char *filename, FLAC__bool read_only);
|
||||
|
||||
/* attempts to make writable before unlinking */
|
||||
GRABBAG_API FLAC__bool grabbag__file_remove_file(const char *filename);
|
||||
FLAC__bool grabbag__file_remove_file(const char *filename);
|
||||
|
||||
/* these will forcibly set stdin/stdout to binary mode (for OSes that require it) */
|
||||
GRABBAG_API FILE *grabbag__file_get_binary_stdin();
|
||||
GRABBAG_API FILE *grabbag__file_get_binary_stdout();
|
||||
FILE *grabbag__file_get_binary_stdin();
|
||||
FILE *grabbag__file_get_binary_stdout();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user