- Timestamp:
- Nov 21, 2008, 9:30:11 PM (17 years ago)
- Location:
- trunk/dll
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/copyright.c
r1287 r1289 6 6 * Change Log: 7 7 * 21 Nov 08 JBS Initial addition to SVN repository 8 * 21 Nov 08 JBS Added use of copyright.h 8 9 * 9 10 */ 10 static char szCopyRight[] = "Copyright (c) 1993, 1998 M. Kimes, " \11 "Copyright (c) 2001, 2008 Steven Levine and Associates, Inc." \12 "All rights reserved";13 11 12 #include "copyright.h" 13 static char szCopyRight[] = COPYRIGHT_STRING; 14 -
trunk/dll/fm3res.dlg
r1140 r1289 37 37 31 Jul 08 JBS Added a missing mnemonic and replaced "Mommy make it stop!" with useful text. 38 38 01 Sep 08 GKY Change User-defined BMP text to better match what it actually does. 39 21 Nov 08 JBS Ticket 297: Added use of COPYRIGHT_YEAR in About dialog 39 40 40 41 ***********************************************************************/ … … 42 43 DLGINCLUDE 1 fm3dlg.h 43 44 DLGINCLUDE 2 fm3dll2.h 45 DLGINCLUDE 3 copyright.h 44 46 45 47 DLGTEMPLATE MSK_FRAME LOADONCALL MOVEABLE DISCARDABLE … … 1043 1045 CTEXT "All rights reserved", -1, 10, 88, 164, 8, 1044 1046 DT_VCENTER | NOT WS_GROUP 1045 CTEXT "Copyright ž 1998, 2007", -1, 10, 80, 164, 8,1047 CTEXT "Copyright ž 1998, " COPYRIGHT_YEAR, -1, 10, 80, 164, 8, 1046 1048 DT_VCENTER | NOT WS_GROUP 1047 1049 CTEXT "Steven Levine and Associates, Inc.", -1, 10, 72, -
trunk/dll/fm3res.rc
r1287 r1289 38 38 20 Jul 08 GKY Add save/append filename to clipboard. 39 39 Change menu wording to make these easier to find 40 21 Nov 08 JBS Ticket 297: Added STRINGTABLE with COPYRIGHT_STRING 40 41 41 42 ***********************************************************************/ … … 45 46 #include "fm3dll2.h" 46 47 #include "fm3dlg.h" 47 48 #define IDS_COPYRIGHT 1 48 #include "copyright.h" 49 49 50 50 ICON MAIN_FRAME ..\icons\FM3.ICO … … 2340 2340 STRINGTABLE 2341 2341 BEGIN 2342 IDS_COPYRIGHT, "Copyright (c) 1993, 1998 M. Kimes, " \ 2343 "Copyright (c) 2001, 2008 Steven Levine and Associates, Inc." \ 2344 "All rights reserved"; 2342 IDS_COPYRIGHT, COPYRIGHT_STRING; 2345 2343 END 2346 2344 -
trunk/dll/makefile
r1288 r1289 44 44 # 18 Nov 08 JBS Ticket 297: Various build improvements/corrections 45 45 # 19 Nov 08 JBS Ticket 297: Removed bldlevel calls 46 # 21 Nov 08 JBS Ticket 297: Added support for copyright.c and copyright.h 46 47 47 48 # Environment: … … 224 225 @%append $^@ library os2386.lib 225 226 226 copyright.obj: copyright.c 227 copyright.obj: copyright.c copyright.h 227 228 $(CC) $(COPYRIGHT_CFLAGS) copyright.c 228 229 … … 260 261 $(CC) $(CFLAGSR) $(BASERES).c 261 262 262 $(BASERES).res: *.rc *.dlg fm3dll2.h fm3dlg.h $(ICONS)263 $(BASERES).res: *.rc *.dlg fm3dll2.h fm3dlg.h copyright.h $(ICONS) 263 264 @echo. 264 265 @echo Compiling resource: $*
Note:
See TracChangeset
for help on using the changeset viewer.