* contrib/tip/Makefile
* contrib/tip/makefile.bc
+ contrib/tip/makefile.vc
+ contrib/tip/make_vc.bat
* contrib/tip/tip.ch
* contrib/tip/utils.c
* contrib/tip/base64x.c
* contrib/tip/encmthd.c
- contrib/tip/hbhex2n.c
* contrib/tip/cgi.prg
* contrib/tip/client.prg
* contrib/tip/ftpcln.prg
* contrib/tip/httpcln.prg
* contrib/tip/mail.prg
* contrib/tip/thtml.prg
* contrib/tip/url.prg
+ Code converted to not require xhb lib.
% Now compiled with -kM switch to avoid macro expansion
of strings. This is important here, as "&" char is used
quite often in the code, so expect a somewhat better
performance.
- Removed hex number conversion functions, as compatible
versions are now available in Harbour with am hb_ prefix.
+ C code update to use Harbour API calls only.
+ Added VC build script.
! Fixed two C warnings.
! Standardized SVN header in one file.
! Set std SVN keywords and eol-style.
; Please test it.
* include/hbextern.ch
* source/rtl/hbinet.c
* contrib/xhb/xhb.ch
* contrib/xhb/xhbfunc.c
* Renamed hb_IsInetSocket() to hb_inetIsSocket() to
keep all inet related functions in one namespace.
25 lines
406 B
Plaintext
25 lines
406 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/**********************************************
|
|
* tip.ch
|
|
*
|
|
* Class oriented Internet protocol library
|
|
* Base definitions
|
|
*
|
|
* (C) 2002 Giancarlo Niccolai
|
|
************************************************/
|
|
|
|
#ifndef TIP_H
|
|
#define TIP_H
|
|
|
|
/* Tip read only protocol */
|
|
#define TIP_RO 0
|
|
/* Tip write only protocol */
|
|
#define TIP_WO 1
|
|
/* Tip read/write protocol */
|
|
#define TIP_RW 2
|
|
|
|
#endif
|