File: sarmenuop.h

package info (click to toggle)
searchandrescue 1.5.0-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 6,768 kB
  • sloc: ansic: 89,609; cpp: 7,699; makefile: 194; sh: 123
file content (22 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef SARMENUOP_H
#define SARMENUOP_H

#include "gw.h"
#include "menu.h"
#include "sar.h"

extern void SARMenuSwitchToMenu(
	sar_core_struct *core_ptr, const char *name
);
extern sar_menu_list_struct *SARMenuGetList(
	sar_menu_struct *m, int skip, int *list_num
);
extern sar_menu_spin_struct *SARMenuGetSpin(
	sar_menu_struct *m, int skip, int *spin_num
);
extern sar_menu_list_item_struct *SARMenuListGetSelectedItem(
	sar_menu_struct *m, int id
);
extern char *SARMenuGetCurrentMenuName(sar_core_struct *core_ptr);

#endif	/* SARMENUOP_H */