blob: 6a6693d35c63ac59070327ee6cfb2bfd9f53c14e (
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 sceNetConnectForSyscalls(int s, const SceNetSockaddr *name, unsigned int namelen);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_NET_NET_SYSCALLS_H_ */
|