Mail Archives: djgpp/1998/01/22/12:45:25
Keith_Green AT next DOT co DOT uk wrote:
>
> Maybe you can help.
>
> I had a few programs written and compiled under MSVC++ using _outp and _inp
> functions. I've tried compiling them using RHIDE and i'm tols that these
> functions are undeclared. It's right !! I can't find any mention of them.
> Are they included/going to be included ?
>
> Regards
>
> Keith Green
That's because _outp() and _inp() don't exist. However outp() and inp()
(without the underscores) do exist and can be used in their place.
Alternatively, you could check on outportb(), inportb() etc. which
are placed in-line in code instead of as functions (and are thus
faster and more space efficient).
Simon.
- Raw text -