summaryrefslogtreecommitdiff
path: root/gusb/gusb-endpoint.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2022-08-14 17:19:20 +0100
committerRichard Hughes <richard@hughsie.com>2022-09-04 22:32:55 +0100
commit6eb6e9d8bb45042b1e5d0acc058169d2eaf2deeb (patch)
treede5a84d2ec94d63cd1e8cde63b6e9324a6b4e62d /gusb/gusb-endpoint.h
parent91a213f7687c39f83cadb022739d09d37d392cee (diff)
downloadgusb-6eb6e9d8bb45042b1e5d0acc058169d2eaf2deeb.tar.gz
trivial: Use @self for instance data
Diffstat (limited to 'gusb/gusb-endpoint.h')
-rw-r--r--gusb/gusb-endpoint.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gusb/gusb-endpoint.h b/gusb/gusb-endpoint.h
index cc9119b..c642d32 100644
--- a/gusb/gusb-endpoint.h
+++ b/gusb/gusb-endpoint.h
@@ -15,22 +15,22 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE(GUsbEndpoint, g_usb_endpoint, G_USB, ENDPOINT, GObject)
guint8
-g_usb_endpoint_get_kind(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_kind(GUsbEndpoint *self);
guint16
-g_usb_endpoint_get_maximum_packet_size(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_maximum_packet_size(GUsbEndpoint *self);
guint8
-g_usb_endpoint_get_polling_interval(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_polling_interval(GUsbEndpoint *self);
guint8
-g_usb_endpoint_get_refresh(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_refresh(GUsbEndpoint *self);
guint8
-g_usb_endpoint_get_synch_address(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_synch_address(GUsbEndpoint *self);
guint8
-g_usb_endpoint_get_address(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_address(GUsbEndpoint *self);
guint8
-g_usb_endpoint_get_number(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_number(GUsbEndpoint *self);
GUsbDeviceDirection
-g_usb_endpoint_get_direction(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_direction(GUsbEndpoint *self);
GBytes *
-g_usb_endpoint_get_extra(GUsbEndpoint *endpoint);
+g_usb_endpoint_get_extra(GUsbEndpoint *self);
G_END_DECLS