Blame src/internal/slibtool_linkcmd_impl.h

b08054
#ifndef SLIBTOOL_LINKCMD_IMPL_H
b08054
#define SLIBTOOL_LINKCMD_IMPL_H
b08054
b08054
struct slbt_deps_meta {
b08054
	char ** altv;
b08054
	char *	args;
b08054
	int	depscnt;
b08054
	int	infolen;
b08054
};
b08054
b08054
int slbt_get_deps_meta(
b08054
	const struct slbt_driver_ctx *	dctx,
b08054
	char *				libfilename,
b08054
	int				fexternal,
b08054
	struct slbt_deps_meta *		depsmeta);
b08054
b08054
int slbt_exec_link_create_dep_file(
b08054
	const struct slbt_driver_ctx *	dctx,
b08054
	struct slbt_exec_ctx *		ectx,
b08054
	char **				altv,
b08054
	const char *			libfilename,
b08054
	bool				farchive);
b08054
b08054
#endif