This is the README file for Who Called. The complete documentation is in
the WHO.MAN file. View with tabstops set at 4 characters.

Unpack the archive. You only need WHO.PEX and (optionally) WHO.EXE. You
can run WHO.EXE for a quick sample of the output. You will need to have
ANSI.SYS (or similar driver) loaded and PROBOARD environment to be set
as per the ProBoard docs.

Create a menu entry 60 with data 'WHO'. Place WHO.PEX in your PEX
directory. That's it. Presto.

There are a lot of command-line options, check the manual.

Compiling: all source files except WHO.C are part of the PBLib library.
They will be included in the full release of the library together with
full documentation.

A note on the EXE version: use the provided .PRJ file. The makefile is
for the PEX and should be run with 'make -DPB_SDK' for it work. Also,
before creating any of the versions, be sure to delete all .OBJ files.
Both version use the same source files (the EXE uses more) and they
should be compiled differently for the EXE and the PEX. The makefile
and PRJ file will take care of that.

Also, for the PEX to work, you need to modify PB_SDK.H. Remove the
lines

	typedef char         *va_list;
	#define va_start(ap,parmn)  ((ap) = (va_list)&(parmn) + sizeof(parmn))
	#define va_arg(ap,type) (*((type *)(ap))++)
	#define va_end(ap)

and #include "fixarg.h" in your source. Philippe's implementation has a
bug which this header file will fix.

