Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
Error Message
◄Contents► ◄Index► ◄Back►
────────────────────────────────────────────────────────────────────────────
Compiler warning (level 1) C4023
'function' : _based pointer passed to unprototyped function :
parameter 'number'
When in a near data model, only the offset portion of a _based
pointer is passed to an unprototyped function. If the function
expects a far pointer, the resulting code will be wrong. In any
data model, if the function is defined to take a _based pointer
with a different base, the resulting code may be unpredictable.
If a prototype is used before the call, the call will be generated
correctly.
-♦-