Quote
Originally posted by magicianeer:
Searching my Codewarrior Pro 5 CDs turned up nothing either (maybe its named something wierd).
Searching newsgroups turned up a message from a guy in 1998 who found it on his Codewarrior CD (didn't say which file or version Grrr).
BTW You can't link an RSSC editor with the Codewarrior IDE, you need to use the more flexible linker in MPW. Here is the build script and MakeFile for the Nova Govt editor I use (notice how it needs to link the special RSSCLibs header as the entry point for the editor, it has the jumps to the routines in {obj}gövt.Edit.p.o
BuildGovtEditor:
Open "{WorkSheet}"
set start date -n
echo Building the ResEdit EVN gövt editor
directory "Menzel:nova:nova dev:EVN Editors:"
set buildToName ":Source:gövt.res"
Export buildToName
make -f MakeGovtEditor > temp
temp
delete temp
#beep
set end date -n
echo " " built in Evaluate ({end} - {start}) DIV 60
"minutes " Evaluate ({end} - {start}) MOD 60
"seconds"
MakeGovtEditor:
OutFile = {buildToName}
obj = :redface:bj:
source = :Source:
ResEditLibraries = ::Libraries:
SysLibs = "{PLibraries}"PasLib.o ?
"{Libraries}"Interface.o
RSSCLibs = {obj}RSSC.a.o ?
{obj}ResDisp.a.o
RSLibs = {obj}RSSCUtils.p.o
"{OutFile}" {obj}gövt.Edit.p.o {RSSCLibs} {RSLibs} {sysLibs}
Link {RSSCLibs} ?
{obj}gövt.Edit.p.o ?
{RSLibs} ?
{sysLibs} ?
-da -w -rt RSSC=2703 ?
-sg @gövt ?
-o "{OutFile}"
{obj} {source} {ResEditLibraries}
Cheers
DrRalph
------------------
NovaTools are coming.