Page 1 of 1

Library

Posted: Fri Sep 13, 2002 11:00 pm
by evans
How do I use Librarys made in other languages in Qbasic. I am making my own using C. Please Help. I'm desperate

Re: Library

Posted: Sat Sep 14, 2002 9:56 am
by Guest
here:

http://www.qbrpgs.com/files/RelLib.zip

it has source in ASM, a doc and an example file.

Re: Library

Posted: Thu Sep 19, 2002 6:18 pm
by Guest
Thanks,
   But I can't go inside the site. There is obviously some kind ofm bandwith problem and they can't support *.exe ,*.zip and *.jpg files.
      Suppose I make an *.obj file using Turbo C, How do
I make it into a *.qlb file. I have Turbo C with Linker.
Please reply directly if possible.

Re: Library

Posted: Fri Sep 20, 2002 11:11 am
by Guest
Make an obj then:

LINK LIBname+Objname......

USE QB's LINKER

Re: Library

Posted: Sat Sep 21, 2002 11:23 am
by Guest
try this instead: Make a BAT file.

LIB Mylib.LIB +ObjName1;
LIB mylib.LIB +objName2;
:
:
:
LIB mylib.LIB +objNameLast;

REM to make a QLB:

LINK /Q mylib.LIB,mylib.QLB,NUL,BQLB45.LIB;