This archive contains the additional sources/files needed to build
the Win16 port of vim. You will also need the main pc source archive.

Notes on use
===============
To Use:
	Unzip into src\ dir, then move the two .pro files into proto\
	Three Borland ide files are provided:
	a) gvim16.ide - build high-feature exe with BC5
	b) gvim16m.ide - build min_feat exe with BC5
	c) gvim16o.ide - build high-feature exe with BC4/BC4.5

There is no loss in functionality if you build with BC4/4.5, but the
exes are significantly larger.

You will probably need to tweak the ide files to point at the
correct location of ctl3dv2.lib on your machine.

There is no makefile at present. Nor is building with MSVC++1.5 supported
(does anyone care? :)

To enable VimBuddy, add VIMBUDDY to the master list of #defines in the
project via the IDE, and rebuild all.

Note the toolbar uses smaller buttons that the Win32 version, because
most Win3.1 machines are likely to be using lower screen resolutions.


Notes on the Win16 Port
==================
The Win16 Port has most of the functionality of its big brother.
What is missing (and probably will remain so):
1) Bold/Italic text not used (to speed up repaint/reduce resource
usage)
2) No tearoff menus (use too much resources)
3) No OLE
4) No long filename support
5) No tooltips on toolbar buttons - instead they produce command-line
tips like menu items do.

Gotcha:
It is recommended that you use a raster font and not a TrueType
fixed-pitch font. e.g. Use Courier, not Courier New. This is not just
to use less resources but because there are subtle bugs in the
handling of fixed-pitch TrueType in Win3.1x. In particular, when you move
a block cursor over a pipe character '|', the cursor is drawn in the wrong
size and bits get left behind. This is a bug in the Win3.1x GDI, it doesn't
happen if you run the exe under 95/NT.
