Nife version Beta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

48 lines
1.5 KiB

  1. /* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E.
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or any
  5. later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses/>
  12. *******************************************************************/
  13. /* net.h */
  14. #ifndef __NIFE_NET_H__
  15. #define __NIFE_NET_H__
  16. #include <stdint.h>
  17. #define UNI_KEY 0xffffffff
  18. extern char NetServer[];
  19. extern void IF_NetServer(void);
  20. extern void IF_Me(void);
  21. extern void IF_netOn(void);
  22. extern void IF_netOff(void);
  23. extern void IF_netDt(void);
  24. extern void IF_netDepth(void);
  25. extern void IF_netList(void);
  26. extern void IFD_netList(void);
  27. extern void IF_netStopS(void);
  28. extern void IF_netDropS(void);
  29. extern void IF_netRusage (void);
  30. extern void IF_netStackList (void);
  31. extern void IFD_netStackList (void);
  32. extern void IF_netU2S (void);
  33. extern void IF_netS2U (void);
  34. extern void IF_netExec (void);
  35. extern void IF_netCompile (void);
  36. extern void sendData(int s, void * b, uint32_t n);
  37. extern void sendDataC(void * b, uint32_t n);
  38. #endif