Library names and includes for compiled HTML help support in Clarion 7 changed between the release of RPMxt and the release of Beta build 2509. If you need to recompile the supplied RPMxt source in Clarion 7 you will need to make the changes listed below.
If any other required changes are discovered they will be added to this page.
12-Oct-07
Original source in RPMx6-B.CLW:
COMPILE('***C7compile***',_CWVER_=7000) OMIT('***omit***',DLL_MODE) PRAGMA('link( c%V%HHL.LIB )') INCLUDE('cwHH.INC'),ONCE ! LOCAL mode !***omit*** COMPILE('***compile***',DLL_MODE) PRAGMA('link( c%V%HH.LIB )') INCLUDE('cwHH.INC'),ONCE ! STANDALONE mode !***compile*** !***C7compile***
Updated source in RPMx6-B.CLW for current beta release:
COMPILE('***C7compile***',_CWVER_=7000) OMIT('***omit***',DLL_MODE) PRAGMA('link( cwHH%V%L.LIB )') INCLUDE('cwHH.INC'),ONCE ! LOCAL mode !***omit*** COMPILE('***compile***',DLL_MODE) PRAGMA('link( cwHH%V%.LIB )') INCLUDE('cwHH.INC'),ONCE ! STANDALONE mode !***compile*** !***C7compile***
|