• Home
Name Date Size #Lines LOC

..--

READMED04-Jul-20251.3 KiB5032

bccdos.lrfD04-Jul-2025606 109

bccdos.makD04-Jul-20251.4 KiB8357

gccdos.makD04-Jul-20251.7 KiB8861

mscdos.lrfD04-Jul-2025738 5150

mscdos.makD04-Jul-20252.2 KiB11578

pdcclip.cD04-Jul-20253.6 KiB13054

pdcdisp.cD04-Jul-20253.9 KiB159112

pdcdos.hD04-Jul-20254.3 KiB187145

pdcgetsc.cD04-Jul-20251.9 KiB10164

pdckbd.cD04-Jul-202513.5 KiB512379

pdcscrn.cD04-Jul-202516.5 KiB758566

pdcsetsc.cD04-Jul-20252.7 KiB10054

pdcutil.cD04-Jul-20251.8 KiB10675

wccdos16.makD04-Jul-20251 KiB4936

wccdos4g.makD04-Jul-2025970 4634

README

1PDCurses for DOS
2================
3
4This directory contains PDCurses source code files specific to DOS.
5
6
7Building
8--------
9
10. Choose the appropriate makefile for your compiler:
11
12	bccdos.mak	- Borland C++ 3.0+
13	gccdos.mak	- DJGPP V2
14	mscdos.mak	- Microsoft C
15	wccdos16.mak	- Watcom 10.6+ (16-bit)
16	wccdos4g.mak	- Watcom 10.6+ (32-bit)
17
18. For 16-bit compilers, you can change the memory MODEL in the makefile.
19  (Large model is the default, and recommended.)
20
21. Optionally, you can build in a different directory than the platform
22  directory by setting PDCURSES_SRCDIR to point to the directory where
23  you unpacked PDCurses, and changing to your target directory:
24
25	set PDCURSES_SRCDIR=c:\pdcurses
26
27. Build it:
28
29	make -f makefile
30
31  (For Watcom, use "wmake" instead of "make"; for MSVC, "nmake".) You'll
32  get the libraries (pdcurses.lib or .a, depending on your compiler; and
33  panel.lib or .a), the demos (*.exe), and a lot of object files. Note
34  that the panel library is just a copy of the main library, provided
35  for convenience; both panel and curses functions are in the main
36  library.
37
38
39Distribution Status
40-------------------
41
42The files in this directory are released to the Public Domain.
43
44
45Acknowledgements
46----------------
47
48Watcom C port was provided by Pieter Kunst <kunst@prl.philips.nl>
49DJGPP 1.x port was provided by David Nugent <davidn@csource.oz.au>
50