* common.mak
* contrib/hbbtree/hb_btree.c
* contrib/hbclipsm/gauge.c
* contrib/hbfbird/firebird.c
* contrib/hbgd/gdwrp.c
* contrib/hbmsql/msql.c
* contrib/hbmysql/mysql.c
* contrib/hbnf/dispc.c
* contrib/hbnf/getenvrn.c
* contrib/hbnf/getver.c
* contrib/hbnf/kspeed.c
* contrib/hbodbc/odbc.c
* contrib/hbole/ole2.c
* contrib/hbsqlit2/hbsqlit2.c
* contrib/hbsqlit3/hbsqlit3.ch
* contrib/hbtpathy/tplinux.c
* contrib/hbtpathy/tpwin32.c
* contrib/hbtpathy/tpos2.c
* contrib/hbtpathy/tpcommon.c
* contrib/hbtip/thtml.ch
* contrib/hbtip/utils.c
* contrib/hbtip/tip.ch
* contrib/xhb/hboutdbg.c
* utils/hbpp/Makefile
- utils/hbpp/pragma.c
+ utils/hbpp/hbpragma.c
* General code quality improvements.
(.api usage, sprintf -> snprintf, ANSI comments, CLIPDEFS,
windows.h inclusion, hb_retc*_buffer, hb_ret(), hb_itemReturnRelease(),
formatting.)
! Collision between two pragma.c files resolved.
25 lines
408 B
Plaintext
25 lines
408 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/**********************************************
|
|
* tip.ch
|
|
*
|
|
* Class oriented Internet protocol library
|
|
* Base definitions
|
|
*
|
|
* (C) 2002 Giancarlo Niccolai
|
|
************************************************/
|
|
|
|
#ifndef TIP_CH
|
|
#define TIP_CH
|
|
|
|
/* 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
|