Things to do to integrate VJC to existing RouterWare code
----------------------------------------------------------
1. in vnvram.h, include the "VJC Compression" string and include
   pointers to the vjc_configuration_table. compile files in this
   directory.
2. in vrtrwstr.h, include the pointers to initialize_vjc() function
   after the pointer to initialize_ppp() in the table of pointers to
   init functions.
3. get in a defs.h from some other directory and include defs.h in 
   cipx.h
4. create a makefile
5. copy the file "itopts" from some other directory.
6. initialize_vjc() was declared and defined without any parameters while
   currently all init functions take a ULONG parameter. Modified the init
   function to accept the parameter in vjcinit.c
6. put in some casts (BYTE_ENUM and enum variations of BOOLEAN) to
   remove first pass compiler warning. then was able to generate complete
   lib file.
7. in mtrlibs, include vjc.lib
8. compile the main source
9. VJC needed memmove() function. copied source from itools libraries and
   recompiled our set of libraries in stdlib directory.
10. in kvjc.h, changed NUMBER_OF_VJC_PORTS from 2 to 3.
11. Include the following section in the .ini file and download that
[[ VJC Compression = Section Start ]]
VJC = enabled
VJC Align Header = enabled
VJC PPP Port = 0,enabled
VJC PPP Port = 1,enabled
VJC PPP Port = 2,enabled
VJC PPP Port Connection Identifier Compression = 0,enabled
VJC PPP Port Connection Identifier Compression = 1,enabled
VJC PPP Port Connection Identifier Compression = 2,enabled
VJC Printf = enabled
VJC Printf VJC = enabled
VJC Printf INIT = enabled
VJC Printf COMPRESS = enabled
VJC Printf UNCOMPRESS = enabled
VJC Printf ENCODE = enabled
VJC Printf DECODE = enabled
VJC Printf CHECKSUM = enabled
VJC Printf STRING = enabled
VJC Printf ALARM = enabled
VJC Printf MEMORY = enabled
VJC Printf DATA = enabled
VJC Printf DIAGNOSTIC = enabled
