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 »

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 »

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 »

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 »

Make an obj then:

LINK LIBname+Objname......

USE QB's LINKER
Guest

Re: Library

Post 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;
Post Reply