Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
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
|