2000-09-26 01:09:18 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Busybox main internal header file
|
|
|
|
*
|
2006-01-22 22:55:11 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-09-26 01:09:18 +00:00
|
|
|
*/
|
|
|
|
#ifndef _BB_INTERNAL_H_
|
|
|
|
#define _BB_INTERNAL_H_ 1
|
|
|
|
|
2002-06-04 20:06:25 +00:00
|
|
|
#include "libbb.h"
|
2001-03-14 01:15:06 +00:00
|
|
|
|
2006-12-24 15:23:28 +00:00
|
|
|
/* order matters: used as index into "install_dir[]" in busybox.c */
|
2000-09-26 01:09:18 +00:00
|
|
|
enum Location {
|
|
|
|
_BB_DIR_ROOT = 0,
|
|
|
|
_BB_DIR_BIN,
|
|
|
|
_BB_DIR_SBIN,
|
|
|
|
_BB_DIR_USR_BIN,
|
|
|
|
_BB_DIR_USR_SBIN
|
|
|
|
};
|
|
|
|
|
2002-06-04 20:06:25 +00:00
|
|
|
enum SUIDRoot {
|
|
|
|
_BB_SUID_NEVER = 0,
|
|
|
|
_BB_SUID_MAYBE,
|
|
|
|
_BB_SUID_ALWAYS
|
|
|
|
};
|
|
|
|
|
2000-09-26 01:09:18 +00:00
|
|
|
struct BB_applet {
|
2002-08-22 15:54:22 +00:00
|
|
|
const char *name;
|
|
|
|
int (*main) (int argc, char **argv);
|
2006-01-22 22:55:11 +00:00
|
|
|
__extension__ enum Location location:4;
|
|
|
|
__extension__ enum SUIDRoot need_suid:4;
|
2000-09-26 01:09:18 +00:00
|
|
|
};
|
2002-08-22 15:54:22 +00:00
|
|
|
|
2006-12-24 15:23:28 +00:00
|
|
|
/* From busybox.c and applet.c */
|
2006-12-24 16:59:27 +00:00
|
|
|
extern int busybox_main(int argc, char **argv);
|
2000-09-26 01:09:18 +00:00
|
|
|
extern const struct BB_applet applets[];
|
2006-12-24 15:23:28 +00:00
|
|
|
extern const unsigned short NUM_APPLETS;
|
2000-09-26 01:09:18 +00:00
|
|
|
|
2000-11-30 00:27:06 +00:00
|
|
|
/* Automagically pull in all the applet function prototypes and
|
2000-12-01 19:02:24 +00:00
|
|
|
* applet usage strings. These are all of the form:
|
2000-11-30 00:27:06 +00:00
|
|
|
* extern int foo_main(int argc, char **argv);
|
|
|
|
* extern const char foo_usage[];
|
2004-03-15 08:29:22 +00:00
|
|
|
* These are all autogenerated from the set of currently defined applets.
|
2000-11-30 00:27:06 +00:00
|
|
|
*/
|
|
|
|
#define PROTOTYPES
|
|
|
|
#include "applets.h"
|
|
|
|
#undef PROTOTYPES
|
2000-09-26 01:09:18 +00:00
|
|
|
|
2002-08-22 15:54:22 +00:00
|
|
|
#endif /* _BB_INTERNAL_H_ */
|