mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:52:57 +00:00
- Start rosapps rearrange and cleanup process.
svn path=/trunk/; revision=34303
This commit is contained in:
parent
0a0a13a41c
commit
2012315e5a
1206 changed files with 81 additions and 81 deletions
48
rosapps/applications/net/ncftp/sio/usio.h
Normal file
48
rosapps/applications/net/ncftp/sio/usio.h
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* usio.h */
|
||||
|
||||
#define kUNewFailed (-9)
|
||||
#define kUBindFailed (-10)
|
||||
#define kUListenFailed (-11)
|
||||
|
||||
/* Don't change the following line -- it is modified by the Configure script. */
|
||||
#define UAccept UAcceptS
|
||||
|
||||
#ifndef UAccept
|
||||
# if defined(NO_SIGNALS) || defined(WIN32) || defined(_WINDOWS)
|
||||
# define UAccept UAcceptS
|
||||
# else
|
||||
# define UAccept UAcceptA
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* UAcceptA.c */
|
||||
int UAcceptA(int, struct sockaddr_un *const, int *, int);
|
||||
|
||||
/* UAcceptS.c */
|
||||
int UAcceptS(int, struct sockaddr_un *const, int *, int);
|
||||
|
||||
/* UBind.c */
|
||||
int UBind(int, const char *const, const int, const int);
|
||||
int UListen(int, int);
|
||||
|
||||
/* UConnect.c */
|
||||
int UConnect(int, const struct sockaddr_un *const, int, int);
|
||||
|
||||
/* UConnectByName.c */
|
||||
int UConnectByName(int, const char *const, const int);
|
||||
|
||||
/* UNew.c */
|
||||
int MakeSockAddrUn(struct sockaddr_un *, const char *const);
|
||||
int UNewStreamClient(void);
|
||||
int UNewDatagramClient(void);
|
||||
int UNewStreamServer(const char *const, const int, const int, int);
|
||||
int UNewDatagramServer(const char *const, const int, const int);
|
||||
|
||||
/* URecvfrom.c */
|
||||
int URecvfrom(int, char *const, size_t, int, struct sockaddr_un *const, int *, int);
|
||||
|
||||
/* USendto.c */
|
||||
int USendto(int, const char *const, size_t, int, const struct sockaddr_un *const, int, int);
|
||||
|
||||
/* USendtoByName.c */
|
||||
int USendtoByName(int, const char *const, size_t, int, const char *const, int);
|
Loading…
Add table
Add a link
Reference in a new issue