Blame src/cmds/pe_cmd_ar.c

c73e19
/***************************************************************/
c73e19
/*  perk: PE Resource Kit                                      */
c73e19
/*  Copyright (C) 2015--2025  SysDeer Technologies, LLC        */
c73e19
/*  Released under GPLv2 and GPLv3; see COPYING.PERK.          */
c73e19
/***************************************************************/
c73e19
c73e19
#include <perk/perk.h>
c73e19
#include "perk_driver_impl.h"
c73e19
5b248d
int pe_cmd_ar(
5b248d
	const struct pe_driver_ctx * dctx,
5b248d
	uint64_t                     flags,
5b248d
	const char *                 posname,
5b248d
	const char *                 arname,
5b248d
	const char **                units)
c73e19
{
c73e19
	(void)dctx;
5b248d
	(void)flags;
5b248d
	(void)posname;
5b248d
	(void)arname;
5b248d
	(void)units;
c73e19
	return 0;
c73e19
}