Thread overview |
---|
January 28, 2004 Error 42: Symbol Undefined _int86 | ||||
---|---|---|---|---|
| ||||
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 |
January 28, 2004 Re: Error 42: Symbol Undefined _int86 | ||||
---|---|---|---|---|
| ||||
Posted in reply to jim p | "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. |
January 28, 2004 Re: Error 42: Symbol Undefined _int86 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | 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. > > |
January 29, 2004 Re: Error 42: Symbol Undefined _int86 | ||||
---|---|---|---|---|
| ||||
Posted in reply to jim p | "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. |
January 29, 2004 Re: Error 42: Symbol Undefined _int86 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | 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 programs > to do interrupts. You'll either need to compile the program as a dos program, or port it to the win32 api. > > > |
January 29, 2004 Re: Error 42: Symbol Undefined _int86 | ||||
---|---|---|---|---|
| ||||
Posted in reply to jim p | 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 > > programs > >>to 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 |
Copyright © 1999-2021 by the D Language Foundation