blob: a1441cbbee687467df51462c9757a7b410c83645 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_NET_NET_SYSCALLS_H
#define _VDSUITE_USER_NET_NET_SYSCALLS_H
#include <net.h>
#ifdef __cplusplus
extern "C" {
#endif
int sceNetSyscallConnect(int s, const SceNetSockaddr *name, unsigned int namelen);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_USER_NET_NET_SYSCALLS_H */
|