~ubuntu-branches/ubuntu/jaunty/speech-tools/jaunty

« back to all changes in this revision

Viewing changes to include/EST_io_aux.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2004-07-16 09:25:39 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040716092539-5p1tzif55b8j924e
Tags: 1:1.2.3-8
Added alaw processing code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
                  
71
71
#define numeric_char(in) (((in < '9' ) && (in > '0')) ? TRUE : FALSE)
72
72
 
73
 
int socket_receive_file(int fd, const EST_String &filename);
74
 
int socket_send_file(int fd, const EST_String &filename);
75
 
 
 
73
#ifdef WIN32
 
74
#include "Winsock2.h"
 
75
typedef SOCKET SOCKET_FD;
 
76
#else
 
77
typedef int SOCKET_FD;
 
78
#endif
 
79
int socket_receive_file(SOCKET_FD fd, const EST_String &filename);
 
80
int socket_send_file(SOCKET_FD fd, const EST_String &filename);
76
81
 
77
82
#endif /*__EST_IO_AUX_H__ */