Blame src/internal/slibtool_uninstall_impl.h

0fb20a
#ifndef SLIBTOOL_UNINSTALL_IMPL_H
0fb20a
#define SLIBTOOL_UNINSTALL_IMPL_H
0fb20a
0fb20a
#include "argv/argv.h"
0fb20a
0fb20a
extern const struct argv_option slbt_uninstall_options[];
0fb20a
0fb20a
enum uninstall_tags {
0fb20a
	TAG_UNINSTALL_HELP,
0fb20a
	TAG_UNINSTALL_VERSION,
0fb20a
	TAG_UNINSTALL_FORCE,
0fb20a
	TAG_UNINSTALL_RMDIR,
0fb20a
	TAG_UNINSTALL_VERBOSE,
0fb20a
	TAG_UNINSTALL_FORBIDDEN,
0fb20a
	TAG_UNINSTALL_RECURSIVE = TAG_UNINSTALL_FORBIDDEN,
0fb20a
};
0fb20a
0fb20a
#define SLBT_UNINSTALL_HELP		0x0001
0fb20a
#define SLBT_UNINSTALL_VERSION		0x0002
0fb20a
#define SLBT_UNINSTALL_FORCE		0x0004
0fb20a
#define SLBT_UNINSTALL_RMDIR		0x0008
0fb20a
#define SLBT_UNINSTALL_VERBOSE		0x0010
0fb20a
#define SLBT_UNINSTALL_FORBIDDEN	0x8000
0fb20a
0fb20a
#endif