HI all,
Can anyone tell me how can I compiling two RC files in one .exe??
Thanks for help
HI all,
Can anyone tell me how can I compiling two RC files in one .exe??
Thanks for help
Open with notepad, copy and paste one into the other. No special tool needed.
Dear ADutheil
BuildRC.BAT
copy WINXP.RC+EZ4FO1.RC+EZ4FO2.RC+EZ4CFG.RC+EZ4BMP.RC RESOURCE.RC
BRC32.EXE -R RESOURCE.RC
Then use RESOURCE.RC instead of 2 RC files
It may help.
create with a text file myrc.rc
.....
in your make file just myrc.rc
Richard
@Echo Off
rem syntax: rc2dll32.bat Your_rc_file  !!! without the .RC extension
DEL GroomW32.RC
DEL GroomW32.RES
COPY *.RC GroomW32.RC
C:\BORLAND\BCC582\BIN\brc32 -r %1.rc
del *.iL?
del *.map
del *.obj
del *.~rc
del *.rws
del *.tds
echo done!