From fa4a6872b5dfaaff979568506a4d5b04eeb3fd37 Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Sat, 29 Apr 2017 21:34:09 -0400 Subject: [PATCH] Tab to spaces --- fs_defs.h | 4 ++-- syshid_functions.h | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/fs_defs.h b/fs_defs.h index c8ea430..89de8b1 100644 --- a/fs_defs.h +++ b/fs_defs.h @@ -1,5 +1,5 @@ #ifndef FS_DEFS_H -#define FS_DEFS_H +#define FS_DEFS_H #include @@ -57,5 +57,5 @@ typedef struct } #endif -#endif /* FS_DEFS_H */ +#endif /* FS_DEFS_H */ diff --git a/syshid_functions.h b/syshid_functions.h index 94dbca5..6800ae4 100644 --- a/syshid_functions.h +++ b/syshid_functions.h @@ -32,30 +32,30 @@ extern u32 syshid_handle; typedef struct { - u32 handle; - u32 physical_device_inst; - unsigned short vid; - unsigned short pid; - unsigned char interface_index; - unsigned char sub_class; - unsigned char protocol; + u32 handle; + u32 physical_device_inst; + unsigned short vid; + unsigned short pid; + unsigned char interface_index; + unsigned char sub_class; + unsigned char protocol; - unsigned short max_packet_size_rx; - unsigned short max_packet_size_tx; + unsigned short max_packet_size_rx; + unsigned short max_packet_size_tx; } HIDDevice; typedef struct _HIDClient HIDClient; -#define HID_DEVICE_DETACH 0 -#define HID_DEVICE_ATTACH 1 +#define HID_DEVICE_DETACH 0 +#define HID_DEVICE_ATTACH 1 typedef s32 (*HIDAttachCallback)(HIDClient *p_hc,HIDDevice *p_hd,u32 attach); struct _HIDClient { - HIDClient *next; - HIDAttachCallback attach_cb; + HIDClient *next; + HIDAttachCallback attach_cb; }; typedef void (*HIDCallback)(u32 handle,s32 error,unsigned char *p_buffer,u32 bytes_transferred,void *p_user);