Library

Please use this Board for QBasic related requests ( file research, programming, etc.)

Moderators:Administrator, Global Moderator

Post Reply
evans
Newbie
Posts:1
Joined:Fri Sep 13, 2002 10:43 pm
Library

Post by evans » Fri Sep 13, 2002 11:00 pm

How do I use Librarys made in other languages in Qbasic. I am making my own using C. Please Help. I'm desperate

Guest

Re: Library

Post by Guest » Sat Sep 14, 2002 9:56 am

here:

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

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

Guest

Re: Library

Post by Guest » Thu Sep 19, 2002 6:18 pm

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.

Guest

Re: Library

Post by Guest » Fri Sep 20, 2002 11:11 am

Make an obj then:

LINK LIBname+Objname......

USE QB's LINKER

Guest

Re: Library

Post by Guest » Sat Sep 21, 2002 11:23 am

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;

Post Reply