The source of the setup program included with DOOM, Final DOOM, Strife, etc.

This commit is contained in:
Travis Bradshaw
2012-01-31 15:35:30 -06:00
commit b126e26499
608 changed files with 18133 additions and 0 deletions

57
DEBUG.C Normal file
View File

@@ -0,0 +1,57 @@
#include <stdlib.h>
#include <conio.h>
#include "setup.h"
#ifdef DEBUG
pup_t far *puplist[]=
{
&askpres,
&cmodem,
&consel,
&control,
&cserial,
&cwarp,
&gusirqer,
&idcard,
&idjoysel,
&idkeysel,
&idmain2,
&idmousel,
&irqerr,
&macros,
&mcard,
&midiport,
&modemchs,
&modsave,
&mousentr,
&mouspres,
&netplay,
&netplay2,
&netsave,
&netserr,
&netwk2,
&numdig,
&phonelst,
&quitwin,
&sbdma,
&sbirq,
&sbport,
&sersave,
&show,
&sockerr,
&title,
NULL
};
void ShowAllPups(void)
{
int i;
i = 0;
while(puplist[i])
{
DrawPup(puplist[i++]);
getch();
}
}
#endif