Tab to spaces

This commit is contained in:
Crayon2000 2017-04-29 21:34:09 -04:00
parent 7151534641
commit fa4a6872b5
2 changed files with 15 additions and 15 deletions

View File

@ -1,5 +1,5 @@
#ifndef FS_DEFS_H #ifndef FS_DEFS_H
#define FS_DEFS_H #define FS_DEFS_H
#include <gctypes.h> #include <gctypes.h>
@ -57,5 +57,5 @@ typedef struct
} }
#endif #endif
#endif /* FS_DEFS_H */ #endif /* FS_DEFS_H */

View File

@ -32,30 +32,30 @@ extern u32 syshid_handle;
typedef struct typedef struct
{ {
u32 handle; u32 handle;
u32 physical_device_inst; u32 physical_device_inst;
unsigned short vid; unsigned short vid;
unsigned short pid; unsigned short pid;
unsigned char interface_index; unsigned char interface_index;
unsigned char sub_class; unsigned char sub_class;
unsigned char protocol; unsigned char protocol;
unsigned short max_packet_size_rx; unsigned short max_packet_size_rx;
unsigned short max_packet_size_tx; unsigned short max_packet_size_tx;
} HIDDevice; } HIDDevice;
typedef struct _HIDClient HIDClient; typedef struct _HIDClient HIDClient;
#define HID_DEVICE_DETACH 0 #define HID_DEVICE_DETACH 0
#define HID_DEVICE_ATTACH 1 #define HID_DEVICE_ATTACH 1
typedef s32 (*HIDAttachCallback)(HIDClient *p_hc,HIDDevice *p_hd,u32 attach); typedef s32 (*HIDAttachCallback)(HIDClient *p_hc,HIDDevice *p_hd,u32 attach);
struct _HIDClient struct _HIDClient
{ {
HIDClient *next; HIDClient *next;
HIDAttachCallback attach_cb; HIDAttachCallback attach_cb;
}; };
typedef void (*HIDCallback)(u32 handle,s32 error,unsigned char *p_buffer,u32 bytes_transferred,void *p_user); typedef void (*HIDCallback)(u32 handle,s32 error,unsigned char *p_buffer,u32 bytes_transferred,void *p_user);