Socket.h 214 B

123456789101112131415161718
  1. /**
  2. * Socket.h
  3. *
  4. * Copyright (C) 2011 kbinani.
  5. */
  6. #ifndef __Socket_h__
  7. #define __Socket_h__
  8. #ifdef WIN32
  9. #include <io.h> // for 'read' system call
  10. #else
  11. #include <unistd.h>
  12. #endif
  13. typedef int Socket;
  14. #endif