Differences From Artifact [1d3c37e76e]:
- File
src/socket.h
— part of check-in
[c9621825fc]
at
2017-06-04 18:48:03
on branch trunk
— Treat MorphOS + ixemul as a separate platform
This reduces the ifdef hell and makes much more sense, as with ixemul,
no native calls are allowed. (user: js, size: 2323) [annotate] [blame] [check-ins using]
To Artifact [ea1fed378b]:
- File src/socket.h — part of check-in [31c0f5b89e] at 2017-10-22 14:09:23 on branch 0.90 — Make Apple GCC with -Wshadow happy (user: js, size: 2314) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
109 110 111 112 113 114 115 |
#ifdef __cplusplus
extern "C" {
#endif
extern bool of_socket_init(void);
extern int of_socket_errno(void);
# ifndef OF_WII
| | | | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
#ifdef __cplusplus
extern "C" {
#endif
extern bool of_socket_init(void);
extern int of_socket_errno(void);
# ifndef OF_WII
extern int of_getsockname(of_socket_t sock, struct sockaddr *restrict addr,
socklen_t *restrict addrLen);
# endif
#ifdef __cplusplus
}
#endif
OF_ASSUME_NONNULL_END
|