Welcome! Log In Create A New Profile

Advanced

ISFS_Open( ) returns -101

Posted by kwirky 
ISFS_Open( ) returns -101
May 18, 2009 04:41AM
ISFS_Open ("/sys/cert.sys", ISFS_OPEN_READ)

It returns -101. What does it mean?
Re: ISFS_Open( ) returns -101
May 18, 2009 06:13PM
-101 is ISFS_EINVAL which is returned by ISFS_Open(const char *filepath, u8 mode) if :

- filepath is NULL
- filepath is too long (>=64 which is obviously not the case here)
- ISFS is not initialized (ie. you did not call ISFS_Initialize())

You should download libogc source code ... it helps.
Re: ISFS_Open( ) returns -101
June 05, 2009 11:00PM
Quote
kwirky
ISFS_Open ("/sys/cert.sys", ISFS_OPEN_READ)

It returns -101. What does it mean?

ISFS_Open("/sys/cert.sys", (u8)ISFS_OPEN_READ);
Re: ISFS_Open( ) returns -101
June 06, 2009 04:18AM
the u8 is not needed
Re: ISFS_Open( ) returns -101
November 11, 2009 12:52AM
What's it mean if ISFS_Open returns -102?
Re: ISFS_Open( ) returns -101
November 11, 2009 04:16AM
Re: ISFS_Open( ) returns -101
November 11, 2009 04:25AM
Quote
yellowstar
http://wiibrew.org/wiki//dev/fs
Nice, thanks. Now to just figure out why permission denied. Oh well, when I get more time.
Sorry, only registered users may post in this forum.

Click here to login