From 38e6ade7ae862ebf1e756502ea981118b919e16a Mon Sep 17 00:00:00 2001 From: Wally4000 Date: Fri, 1 Nov 2024 09:44:41 +1100 Subject: [PATCH] Use uint8_t instead of referring to psptypes --- src/wlan/pspwlan.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/wlan/pspwlan.h b/src/wlan/pspwlan.h index 8eae9e03..43518754 100644 --- a/src/wlan/pspwlan.h +++ b/src/wlan/pspwlan.h @@ -11,7 +11,6 @@ #ifndef __PSPWLAN_H__ #define __PSPWLAN_H__ -#include #ifdef __cplusplus extern "C" { @@ -34,11 +33,11 @@ int sceWlanGetSwitchState(void); /** * Get the Ethernet Address of the wlan controller * - * @param etherAddr - pointer to a buffer of u8 (NOTE: it only writes to 6 bytes, but + * @param etherAddr - pointer to a buffer of uint8_t (NOTE: it only writes to 6 bytes, but * requests 8 so pass it 8 bytes just in case) * @return 0 on success, < 0 on error */ -int sceWlanGetEtherAddr(u8 *etherAddr); +int sceWlanGetEtherAddr(uint8_t *etherAddr); /** * Attach to the wlan device