It is accomplished ...

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
ejakowatz
2002-07-09 12:24:59 +00:00
commit 52a3801208
2025 changed files with 472889 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
/* socket.h
* Very simply file. This will grow!
*/
/**
* @file ksocket.h
* @brief Kernel socket definitions
* These never need to be seen outside of the kernel and no user
* application should ever include this file.
*/
#ifndef _KERNEL_KSOCKET_H
#define _KERNEL_KSOCKET_H
/**
* @defgroup KSOCKET Kernel Socket Definitions
* @brief Kernel socket prototypes and definitions
* @ingroup OpenBeOS_Kernel
* @{
*/
#ifdef _KERNEL_MODE
int socket(int, int, int, bool);
#endif
/** @} */
#endif /* _KERNEL_KSOCKET_H */