by Rick Lipkin » Wed Nov 30, 2005 12:28 am
Dutch
Just curious why you have two .dll's ... If you are creating your .dll's from .rc you can combine all your .rc's into one single .rc and then import them into a single .dll
I have modified rc2dll32.bat file as follows:
rem RC file to 32 bits resources DLL
rem syntax: rc2dll32.bat Your_rc_file !!! without the .RC extension
DEL VEH32.DLL
DEL VEH32.RC
: combine all .rc into a single .rc
COPY *.RC VEH32.RC
bcc32 -c c:\fwh26\dll\screen32.c
brc32 -r %1.rc
ilink32 /Tpd c:\borland\lib\c0d32.obj screen32.obj, %1.dll,,c:\borland\lib\cw32.lib c:\borland\lib\import32.lib,, %1.res
echo done!
Rick Lipkin
SC Dept of Health, USA