c++ - No Prototype
I am getting an error when I try to use the method geninterrupt from dos.h "function geninterrupt has no prototype" can anybody help me? Phill -- phillbert pacific.net.au
Feb 11 2002
That means you have strict prototyping (-r) turned on, which doesn't allow calling a function with no prototype. geninterrupt() is not declared for the WIN32 memory model. "Phill" <phillbert pacific.net.au> wrote in message news:a480m7$2p88$1 digitaldaemon.com...I am getting an error when I try to use the method geninterrupt from dos.h "function geninterrupt has no prototype" can anybody help me? Phill -- phillbert pacific.net.au
Feb 11 2002