blob: 9752be9aea5021dbbb8d511a7bc182b1c43c937e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _PSP2_NET_NET_SYSCALLS_H_
#define _PSP2_NET_NET_SYSCALLS_H_
#include <psp2/net/net.h>
#ifdef __cplusplus
extern "C" {
#endif
int sceNetSyscallConnect(int s, const SceNetSockaddr *name, unsigned int namelen);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_NET_NET_SYSCALLS_H_ */
|