OSDN Git Service

[Refactor] #39964 Removed the dependency from read-pref-file to autopick-pref-processor
[hengband/hengband.git] / src / io / read-pref-file.h
1 #pragma once
2
3 extern char auto_dump_header[];
4 extern char auto_dump_footer[];
5
6 extern errr process_pref_file(player_type *creature_ptr, concptr name, void(*process_autopick_file_command)(char*));
7 extern errr process_autopick_file(player_type *creature_ptr, concptr name, void(*process_autopick_file_command)(char*));
8 extern errr process_histpref_file(player_type *creature_ptr, concptr name, void(*process_autopick_file_command)(char*));
9
10 void auto_dump_printf(FILE *auto_dump_stream, concptr fmt, ...);
11 bool open_auto_dump(FILE **fpp, concptr buf, concptr mark);
12 void close_auto_dump(FILE **fpp, concptr auto_dump_mark);