X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udev%2Flib%2Flibudev-private.h;h=d8bf981bb5379896fb4ad2810c6f2957f1f6ebbc;hp=b03c813c2f68b7720cc8a99d314b774cc368d2a8;hb=c4f5f942d7dd904e53374c10de319feb41968561;hpb=9d7e1b3fdd3c2bd064f33a29ea5241fdefb718ee diff --git a/udev/lib/libudev-private.h b/udev/lib/libudev-private.h index b03c813c2..d8bf981bb 100644 --- a/udev/lib/libudev-private.h +++ b/udev/lib/libudev-private.h @@ -60,6 +60,15 @@ extern int device_set_subsystem(struct udev_device *udev_device, const char *sub extern int device_set_devname(struct udev_device *udev_device, const char *devname); extern int device_add_devlink(struct udev_device *udev_device, const char *devlink); extern int device_add_property(struct udev_device *udev_device, const char *property); +extern int device_set_action(struct udev_device *udev_device, const char *action); +extern int device_set_driver(struct udev_device *udev_device, const char *driver); +extern const char *device_get_devpath_old(struct udev_device *udev_device); +extern int device_set_devpath_old(struct udev_device *udev_device, const char *devpath_old); +extern const char *device_get_physdevpath(struct udev_device *udev_device); +extern int device_set_physdevpath(struct udev_device *udev_device, const char *physdevpath); +extern int device_get_timeout(struct udev_device *udev_device); +extern int device_set_timeout(struct udev_device *udev_device, int timeout); +extern int device_set_devnum(struct udev_device *udev_device, dev_t devnum); /* udev_ctrl - daemon runtime setup */ struct udev_ctrl;