diff --git a/syshid_functions.c b/syshid_functions.c index 5417305..996d39d 100644 --- a/syshid_functions.c +++ b/syshid_functions.c @@ -46,8 +46,6 @@ EXPORT_DECL(int, HIDSetIdle,unsigned int handle, u8 interface_index,u8 duration, EXPORT_DECL(int, HIDRead,unsigned int handle, unsigned char *p_buffer, unsigned int buffer_length, HIDCallback hc, void *p_user); EXPORT_DECL(int, HIDWrite,unsigned int handle, unsigned char *p_buffer, unsigned int buffer_length, HIDCallback hc, void *p_user); -EXPORT_DECL(int, HIDResetDevice,unsigned int handle, HIDCallback hc, void *p_user); - void InitAcquireSysHID(void) { OSDynLoad_Acquire("nsyshid.rpl", &syshid_handle); @@ -72,7 +70,6 @@ void InitSysHIDFunctionPointers(void) OS_FIND_EXPORT(syshid_handle, HIDSetDescriptor); OS_FIND_EXPORT(syshid_handle, HIDRead); OS_FIND_EXPORT(syshid_handle, HIDWrite); - OS_FIND_EXPORT(syshid_handle, HIDResetDevice); OS_FIND_EXPORT(syshid_handle, HIDSetProtocol); OS_FIND_EXPORT(syshid_handle, HIDGetProtocol); OS_FIND_EXPORT(syshid_handle, HIDSetIdle); diff --git a/syshid_functions.h b/syshid_functions.h index 7af57ef..08213b4 100644 --- a/syshid_functions.h +++ b/syshid_functions.h @@ -80,13 +80,9 @@ extern int(*HIDSetIdle)(unsigned int handle, u8 interface_index,u8 duration, HID extern int(* HIDSetProtocol)(unsigned int handle,u8 interface_index,u8 protocol, HIDCallback hc, void *p_user); extern int(* HIDGetProtocol)(unsigned int handle,u8 interface_index,u8 * protocol, HIDCallback hc, void *p_user); - extern int(*HIDRead)(unsigned int handle, unsigned char *p_buffer, unsigned int buffer_length, HIDCallback hc, void *p_user); extern int(*HIDWrite)(unsigned int handle, unsigned char *p_buffer, unsigned int buffer_length, HIDCallback hc, void *p_user); -extern int(*HIDResetDevice)(unsigned int handle, HIDCallback hc, void *p_user); - - #ifdef __cplusplus } #endif