c++ - Error 42: Symbol Undefined _int86
- jim p (8/8) Jan 28 2004 Hi,
- Walter (2/10) Jan 28 2004 _int86 is defined in the DOS runtime libraries.
- jim p (3/20) Jan 28 2004 Does that mean it can't be used in Win32?
- Walter (4/5) Jan 28 2004 That's right. The win32 operating system will not allow user level progr...
- jim p (4/9) Jan 29 2004 Any idea where I can find some libraries for implementing indexed files ...
- Jan Knepper (6/29) 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...programsDoes that mean it can't be used in Win32?That's right. The win32 operating system will not allow user levelto 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...-- ManiaC++ Jan Knepper But as for me and my household, we shall use Mozilla... www.mozilla.org"jim p" <x y.com> wrote in message news:bv92lg$1bq3$1 digitaldaemon.com...programsDoes that mean it can't be used in Win32?That's right. The win32 operating system will not allow user levelto do interrupts. You'll either need to compile the program as a dos program, or port it to the win32 api.
Jan 29 2004