Renegade BBS Fork
Go to file
R. Eric Wheeler 1d848aed98 Reset 2022-06-21 17:11:35 -07:00
SOURCE Reset 2022-06-21 17:11:35 -07:00
.gitignore Reset 2022-06-21 17:11:35 -07:00
BPC.CFG Reset 2022-06-21 17:11:35 -07:00
BUILDBP.CMD Reset 2022-06-21 17:11:35 -07:00
BUILDVP.CMD Reset 2022-06-21 17:11:35 -07:00
COMPILE.TXT Reset 2022-06-21 17:11:35 -07:00
COPYEXEBP.CMD Reset 2022-06-21 17:11:35 -07:00
COPYEXEVP.CMD Reset 2022-06-21 17:11:35 -07:00
README.md Reset 2022-06-21 17:11:35 -07:00
VPC.CFG Reset 2022-06-21 17:11:35 -07:00

README.md

Renegade BBS Source Code http://rgbbs.info

==============================

Copyright Cott Lang, Patrick Spence, Gary Hall, Jeff Herrings, T.J. McMillen, Chris Hoppman, and Lee Palmer
Ported to Win32 by Rick Parrish


TODO list:

  • Find/correct any usage of FOR loop variables after the loop (since they are 1 greater in VP than in BP
  • Find/correct any file i/o on untyped files where Words or Integers are being read

Completed list

  • IFDEF out anything that doesn't compile and make a WIN32 placeholder that does a "WriteLn('REETODO UNIT FUNCTION'); Halt;" (then you can grep the executables for REETODO to see which REETODOs actually need to be implemented)
  • IFDEF out any ASM code blocks and handle the same as above
  • TYPEs of OF WORD to OF SMALLWORD (just in case they're used in a RECORD)
  • TYPEs of OF INTEGER to OF SMALLINT (just in case they're used in a RECORD)
  • WORD in RECORD to SMALLWORD
  • INTEGER in RECORD to SMALLINT
  • Anything passing 0 for the Attr parameter to FindFirst should pass AnyFile instead (VP returns no files when 0 is passed for Attr)
  • Investigate FILEMODE usage to see if FILEMODEREADWRITE, TEXTMODEREAD or TEXTMODEREADWRITE should be used
  • Implement any REETODOs that appear in compiled executables