network.h incomplete? May 26, 2010 08:44AM | Registered: 14 years ago Posts: 25 |
#ifndef htons #define htons(x) (x) #endifthat's the only time you see htons in the .h file. and it doesn't seem to exist anywhere else in the libogc folder either.
Re: network.h incomplete? May 26, 2010 09:25AM | Registered: 14 years ago Posts: 78 |
Re: network.h incomplete? May 26, 2010 09:56AM | Registered: 14 years ago Posts: 25 |
s32 net_ioctl(s32 s, u32 cmd, void *argp); s32 net_fcntl(s32 s, u32 cmd, u32 flags); s32 net_poll(struct pollsd *sds,s32 nsds,s32 timeout); s32 net_shutdown(s32 s, u32 how);these all return type s32 integers but only have a parameter list. what is supposed to be in the returned value?
Re: network.h incomplete? May 26, 2010 04:43PM | Registered: 14 years ago Posts: 188 |
Re: network.h incomplete? May 26, 2010 05:53PM | Registered: 14 years ago Posts: 25 |
Re: network.h incomplete? May 27, 2010 06:15PM | Registered: 14 years ago Posts: 188 |
Re: network.h incomplete? May 27, 2010 06:35PM | Registered: 14 years ago Posts: 25 |