Update of /cvsroot/win32forth/win32forth/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8713/src
Modified Files:
imageman.f
Log Message:
Three new flags added to configure witch dll's are needed by a turnkey application
CONSOLE-DLL? \ set to true if your app needs the w32fConsole.dll
HTML-DISPLAY-DLL? \ set to true if your app needs the w32fHtmlDisplay.dll
SCINTILLA-DLL? \ set to true if your app needs the w32fScintilla.dll
Index: imageman.f
===================================================================
RCS file: /cvsroot/win32forth/win32forth/src/imageman.f,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** imageman.f 1 May 2005 06:27:41 -0000 1.6
--- imageman.f 22 May 2005 10:01:38 -0000 1.7
***************
*** 664,667 ****
--- 664,671 ----
GUI VALUE EXETYPE
+ TRUE VALUE CONSOLE-DLL? \ set to true if your app needs the w32fConsole.dll
+ FALSE VALUE HTML-DISPLAY-DLL? \ set to true if your app needs the w32fHtmlDisplay.dll
+ FALSE VALUE SCINTILLA-DLL? \ set to true if your app needs the w32fScintilla.dll
+
: std-IMG2EXE ( addr len -- ) \ compose STD image, addr/len is name
***************
*** 697,704 ****
s" .idata" SECTION
S-INIT S-READ OR SECTIONTYPE
! EXETYPE CUI <> IF \ if not a DOS app
s" W32FCONSOLE.DLL" IMPLIB \ force load of the DLL, required
0 s" c_initconsole" IMPORT
THEN
s" KERNEL32.DLL" IMPLIB
0 s" GetProcAddress" IMPORT
--- 701,719 ----
s" .idata" SECTION
S-INIT S-READ OR SECTIONTYPE
! EXETYPE CUI <> CONSOLE-DLL? and IF \ if not a DOS app
s" W32FCONSOLE.DLL" IMPLIB \ force load of the DLL, required
0 s" c_initconsole" IMPORT
THEN
+
+ HTML-DISPLAY-DLL? IF
+ s" w32fHtmlDisplay.dll" IMPLIB \ force load of the DLL, required
+ 0 s" DoPageAction" IMPORT
+ THEN
+
+ SCINTILLA-DLL? IF
+ s" w32fScintilla.dll" IMPLIB \ force load of the DLL, required
+ 0 s" Scintilla_DirectFunction@16" IMPORT
+ THEN
+
s" KERNEL32.DLL" IMPLIB
0 s" GetProcAddress" IMPORT
|