mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-21 17:26:06 +00:00
17 lines
363 B
C
17 lines
363 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "systemctl.h"
|
|
|
|
int start_unit(int argc, char *argv[], void *userdata);
|
|
|
|
struct action_metadata {
|
|
const char *target;
|
|
const char *verb;
|
|
const char *mode;
|
|
};
|
|
|
|
extern const struct action_metadata action_table[_ACTION_MAX];
|
|
|
|
enum action verb_to_action(const char *verb);
|