110
Language Reference
©2000-2008 Tibbo Technology Inc.
C1024
Description:
This error occurs when an include statement references a file which cannot be
read. Most commonly, it means the filename was misspelled.
Example:
include
“utileties.tbh”
' error C1024: unable to read file
'utileties.tbh'
See Also
L1001
Description:
This error is occurs when the linker tries to link two object files which have
different data base addresses.
Lower addresses are reserved for passing arguments and returning values from
platform syscalls. The data base address for program variables is calculated
according to how much memory platform syscalls require for arguments and return
values.
Most commonly, this error means that you are trying to link object files built for
different platforms.
See Also
L1002
Description:
This error occurs when the linker attempts to link two object files with different
counts of platform event handlers. Most commonly this error means that you are
trying to link object files built for two different platforms.
See Also
90
7
7