Pdcurses 3.0 comes with source only. But compilation is easy.
1. Download the source and extract it to a folder. Then issue the following command at command prompt:
set PDCURSES_SRCDIR=<pdcurse_source>
2. Change directory to <pdcurse_source>\win32 directory. Now, depending upon your choice of compiler, issue a command to compile. I'm using MSVC and I've used:
For MinGW (GCC) type,
mingw32-make -f mingwin32.mak
It will compile your the pdcurse and samples.
To create app follow the steps (I've tested with MSVC 7.1)
a) Create a Console app.
b) Remove the auto-generated file and add a file from demo directory of pdcurse.
c) Add panel.lib, pdcurses.lib, user32.lib and advapi32.lib to it.
d) Add the directories pointing curses.h, pdcwin.h and libraries to Project.
Now it should compile.
Regards,
Biplab