"GSTRING.H"
GSSetWinClipPath:
change
#define GSSetWinClipPath(flags) GR_SET_DOC_CLIP_PATH,(flags)
to
#define GSSetWinClipPath(flags) GR_SET_WIN_CLIP_PATH,(flags)
{Jörg Polzfuß}
GSSetClipRect/GSSetWinClipRect:
use these lines in your .goc-file after including gstring.h:
#undef GSSetClipRect
#undef GSSetWinClipRect
#define GSSetWinClipRect(path,rl_sw,rt_sw,rr_sw,rb_sw) \
GR_SET_WIN_CLIP_RECT, GOC_WORD(path) , GOC_SW(rl_sw), \
GOC_SW(rt_sw),GOC_SW(rr_sw),GOC_SW(rb_sw)
#define GSSetClipRect(path,rl_sw,rt_sw,rr_sw,rb_sw) \
GR_SET_CLIP_RECT, GOC_WORD(path) , GOC_SW(rl_sw), \
GOC_SW(rt_sw),GOC_SW(rr_sw),GOC_SW(rb_sw)
{Falk Rehwagen}