From 5b248de6f0f31354f2b2023ca0ee8be7604e3e23 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 2 Jun 2025 01:17:43 +0000 Subject: pe_cmd_ar(): updated function signature, defined action and option constants. --- src/cmds/pe_cmd_ar.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/cmds/pe_cmd_ar.c') diff --git a/src/cmds/pe_cmd_ar.c b/src/cmds/pe_cmd_ar.c index 2df578c..e578ca0 100644 --- a/src/cmds/pe_cmd_ar.c +++ b/src/cmds/pe_cmd_ar.c @@ -7,8 +7,17 @@ #include #include "perk_driver_impl.h" -int pe_cmd_ar(const struct pe_driver_ctx * dctx) +int pe_cmd_ar( + const struct pe_driver_ctx * dctx, + uint64_t flags, + const char * posname, + const char * arname, + const char ** units) { (void)dctx; + (void)flags; + (void)posname; + (void)arname; + (void)units; return 0; } -- cgit v1.2.3