c++ - Error 42: Symbol Undefined _int86
- "jim p" <x y.com> Jan 28 2004
- "Walter" <walter digitalmars.com> Jan 28 2004
- "jim p" <x y.com> Jan 28 2004
- "Walter" <walter digitalmars.com> Jan 28 2004
- "jim p" <x y.com> Jan 29 2004
- Jan Knepper <jan smartsoft.us> Jan 29 2004
Hi, I got hold of some c functions that handle indexed files. They compile OK, but when I try to link them to my source file I get the following error at link time: Error 42: Symbol Undefined _int86 Is there a library I have to link to which defines this symbol ? Thanks Jimbob
Jan 28 2004
"jim p" <x y.com> wrote in message news:bv8r9m$v43$1 digitaldaemon.com...Hi, I got hold of some c functions that handle indexed files. They compile OK, but when I try to link them to my source file I get the following error at link time: Error 42: Symbol Undefined _int86 Is there a library I have to link to which defines this symbol ? Thanks Jimbob
_int86 is defined in the DOS runtime libraries.
Jan 28 2004
Does that mean it can't be used in Win32? "Walter" <walter digitalmars.com> wrote in message news:bv92ci$1b94$3 digitaldaemon.com..."jim p" <x y.com> wrote in message news:bv8r9m$v43$1 digitaldaemon.com...Hi, I got hold of some c functions that handle indexed files. They compile OK, but when I try to link them to my source file I get the following error at link time: Error 42: Symbol Undefined _int86 Is there a library I have to link to which defines this symbol ? Thanks Jimbob
_int86 is defined in the DOS runtime libraries.
Jan 28 2004
"jim p" <x y.com> wrote in message news:bv92lg$1bq3$1 digitaldaemon.com...Does that mean it can't be used in Win32?
That's right. The win32 operating system will not allow user level programs to do interrupts. You'll either need to compile the program as a dos program, or port it to the win32 api.
Jan 28 2004
Any idea where I can find some libraries for implementing indexed files ?? "Walter" <walter digitalmars.com> wrote in message news:bv9l1u$2bdo$2 digitaldaemon.com..."jim p" <x y.com> wrote in message news:bv92lg$1bq3$1 digitaldaemon.com...Does that mean it can't be used in Win32?
That's right. The win32 operating system will not allow user level
to do interrupts. You'll either need to compile the program as a dos program, or port it to the win32 api.
Jan 29 2004
What kind of indexed files do you want? jim p wrote:Any idea where I can find some libraries for implementing indexed files ?? "Walter" <walter digitalmars.com> wrote in message news:bv9l1u$2bdo$2 digitaldaemon.com..."jim p" <x y.com> wrote in message news:bv92lg$1bq3$1 digitaldaemon.com...Does that mean it can't be used in Win32?
That's right. The win32 operating system will not allow user level
programsto do interrupts. You'll either need to compile the program as a dos program, or port it to the win32 api.
-- ManiaC++ Jan Knepper But as for me and my household, we shall use Mozilla... www.mozilla.org
Jan 29 2004








Jan Knepper <jan smartsoft.us>