chiark / gitweb /
tree-wide: beautify remaining copyright statements
[elogind.git] / src / shared / udev-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5   Copyright © 2013 Zbigniew Jędrzejewski-Szmek
6 ***/
7
8 #if 0 /// elogind needs the systems udev header
9 #include "udev.h"
10 #else
11 #include <libudev.h>
12 #endif // 0
13 #include "util.h"
14
15 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev*, udev_unref);
16 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_device*, udev_device_unref);
17 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_enumerate*, udev_enumerate_unref);
18 #if 0 /// UNNEEDED by elogind
19 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_event*, udev_event_unref);
20 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_rules*, udev_rules_unref);
21 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_ctrl*, udev_ctrl_unref);
22 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_ctrl_connection*, udev_ctrl_connection_unref);
23 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_ctrl_msg*, udev_ctrl_msg_unref);
24 #endif // 0
25 DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_monitor*, udev_monitor_unref);
26
27 #if 0 /// UNNEEDED by elogind
28 #endif // 0
29 int udev_parse_config(void);
30
31 int udev_device_new_from_stat_rdev(struct udev *udev, const struct stat *st, struct udev_device **ret);