Library
Moderators:Administrator, Global Moderator
Re: Library
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.
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
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;
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;