├── .gitignore ├── AUTHORS ├── ChangeLog-CN ├── ChangeLog-EN ├── INSTALL ├── LICENSE ├── README ├── README-CN ├── README-EN ├── doc ├── G5.vsd ├── README.TXT └── READ_SOURCE-CN.TXT ├── makefile ├── makefile.AIX ├── makefile.Linux ├── makefile.WINDOWS-MinGW ├── src ├── G5.c ├── G5.h ├── makefile ├── makefile.AIX ├── makefile.Linux ├── makefile.WINDOWS-MinGW └── vc6 │ ├── vc6.dsp │ ├── vc6.dsw │ ├── vc6.ncb │ ├── vc6.opt │ └── vc6.plg └── test ├── demo-win.conf ├── demo.conf ├── test-win.conf ├── test.conf └── test.conf.bak /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog-CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/ChangeLog-CN -------------------------------------------------------------------------------- /ChangeLog-EN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/ChangeLog-EN -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | see README 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/README -------------------------------------------------------------------------------- /README-CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/README-CN -------------------------------------------------------------------------------- /README-EN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/README-EN -------------------------------------------------------------------------------- /doc/G5.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/doc/G5.vsd -------------------------------------------------------------------------------- /doc/README.TXT: -------------------------------------------------------------------------------- 1 | see ../README 2 | -------------------------------------------------------------------------------- /doc/READ_SOURCE-CN.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/doc/READ_SOURCE-CN.TXT -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/makefile -------------------------------------------------------------------------------- /makefile.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/makefile.AIX -------------------------------------------------------------------------------- /makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/makefile.Linux -------------------------------------------------------------------------------- /makefile.WINDOWS-MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/makefile.WINDOWS-MinGW -------------------------------------------------------------------------------- /src/G5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/G5.c -------------------------------------------------------------------------------- /src/G5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/G5.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/makefile -------------------------------------------------------------------------------- /src/makefile.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/makefile.AIX -------------------------------------------------------------------------------- /src/makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/makefile.Linux -------------------------------------------------------------------------------- /src/makefile.WINDOWS-MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/makefile.WINDOWS-MinGW -------------------------------------------------------------------------------- /src/vc6/vc6.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/vc6/vc6.dsp -------------------------------------------------------------------------------- /src/vc6/vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/vc6/vc6.dsw -------------------------------------------------------------------------------- /src/vc6/vc6.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/vc6/vc6.ncb -------------------------------------------------------------------------------- /src/vc6/vc6.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/vc6/vc6.opt -------------------------------------------------------------------------------- /src/vc6/vc6.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/src/vc6/vc6.plg -------------------------------------------------------------------------------- /test/demo-win.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/test/demo-win.conf -------------------------------------------------------------------------------- /test/demo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/test/demo.conf -------------------------------------------------------------------------------- /test/test-win.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/test/test-win.conf -------------------------------------------------------------------------------- /test/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/test/test.conf -------------------------------------------------------------------------------- /test/test.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/G5/HEAD/test/test.conf.bak --------------------------------------------------------------------------------