How do I use the network configuration dialog (sceUtilityNetconfInitStart())? The parameter the function takes is pspUtilityNetconfData but some of the fields for it are just 'unknown' in any docs I've found and I can't find an example of how to do this anywhere.
From the PSPSDK:
typedef struct _pspUtilityNetconfData {
u32 size;
int language;
int buttonSwap; int unknown[4];
int result; int unknown2[4];
int action; //one of pspUtilityNetconfActions u32 unknown3;
} pspUtilityNetconfData;
From the lack of replies I've assumed that there isn't much known about this... could anyone tell me how I can help out by working out what these fields are?
The general method is to disassemble the firmware and see how that function is used. If it's not documented in pspsdk samples, chances are nobody's taken the time to do that yet.