OSDN Git Service

[Refactor] #39964 Unified autopick-searcher.c/h into autopick-finder.c/h
[hengband/hengband.git] / src / autopick / autopick-finder.h
1 #pragma once
2
3 #include "autopick/autopick-util.h"
4
5 int find_autopick_list(player_type *player_ptr, object_type *o_ptr);
6 bool get_object_for_search(player_type *player_ptr, object_type **o_handle, concptr *search_strp);
7 bool get_destroyed_object_for_search(player_type *player_ptr, object_type **o_handle, concptr *search_strp);
8 byte get_string_for_search(player_type *player_ptr, object_type **o_handle, concptr *search_strp);
9 void search_for_object(player_type *player_ptr, text_body_type *tb, object_type *o_ptr, bool forward);
10 void search_for_string(text_body_type *tb, concptr search_str, bool forward);