• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D09-Mar-20191.5 KiB5132

bccdos.lrfH A D09-Mar-2019615 109

bccdos.makH A D09-Mar-20191.5 KiB8357

dmcdos.makH A D09-Mar-20195.2 KiB259176

gccdos.makH A D09-Mar-20191.7 KiB8861

mscdos.lrfH A D09-Mar-2019795 5150

mscdos.makH A D09-Mar-20192.3 KiB11578

pdcclip.cH A D09-Mar-20193.5 KiB13353

pdcdisp.cH A D09-Mar-20193.7 KiB13695

pdcdos.hH A D09-Mar-20194.7 KiB195154

pdcgetsc.cH A D09-Mar-20191.9 KiB9963

pdckbd.cH A D09-Mar-201913.9 KiB514378

pdcscrn.cH A D09-Mar-201918.2 KiB786584

pdcsetsc.cH A D09-Mar-20192.6 KiB10253

pdcutil.cH A D09-Mar-20192.3 KiB12288

wccdos16.makH A D09-Mar-20191.1 KiB4936

wccdos4g.makH A D09-Mar-20191,015 4634

README.md

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 - Open Watcom 1.8+ (16-bit)
16        wccdos4g.mak - Open Watcom 1.8+ (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>
49
50DJGPP 1.x port was provided by David Nugent <davidn@csource.oz.au>
51