latest SDK
This commit is contained in:
14
foobar2000/helpers/text_file_loader.h
Normal file
14
foobar2000/helpers/text_file_loader.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
namespace text_file_loader
|
||||
{
|
||||
void write(const service_ptr_t<file> & p_file,abort_callback & p_abort,const char * p_string,bool is_utf8);
|
||||
void read(const service_ptr_t<file> & p_file,abort_callback & p_abort,pfc::string_base & p_out,bool & is_utf8);
|
||||
void read_v2(const service_ptr_t<file> & p_file, abort_callback & p_abort, pfc::string_base & p_out, bool & is_utf8, bool forceUTF8);
|
||||
|
||||
|
||||
void write(const char * p_path,abort_callback & p_abort,const char * p_string,bool is_utf8);
|
||||
void read(const char * p_path,abort_callback & p_abort,pfc::string_base & p_out,bool & is_utf8);
|
||||
void read_v2(const char * p_path, abort_callback & p_abort, pfc::string_base & p_out, bool & is_utf8, bool forceUTF8);
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user