Move d2x-rebirth/main/escort.h -> common/main/escort.h

This commit is contained in:
Kp 2013-03-03 01:03:33 +00:00
parent bca4a99f3e
commit cbe52ce1c7
2 changed files with 11 additions and 1 deletions

View file

@ -6,6 +6,15 @@
#ifndef _ESCORT_H
#define _ESCORT_H
#if defined(DXX_BUILD_DESCENT_I)
static inline void invalidate_escort_goal(void)
{
}
static inline void detect_escort_goal_accomplished(int index)
{
(void)index;
}
#elif defined(DXX_BUILD_DESCENT_II)
#define GUIDEBOT_NAME_LEN 9
struct object;
extern void change_guidebot_name(void);
@ -13,4 +22,6 @@ extern void do_escort_menu(void);
extern void detect_escort_goal_accomplished(int index);
extern void set_escort_special_goal(int key);
void recreate_thief(struct object *objp);
void invalidate_escort_goal(void);
#endif
#endif // _ESCORT_H

View file

@ -217,7 +217,6 @@ int pick_up_vulcan_ammo(void)
return used;
}
extern void invalidate_escort_goal(void);
extern char GetKeyValue(char);
extern void check_to_use_primary(int);
extern void multi_send_got_flag (char);