Changeset 952 for trunk/dll/init.c
- Timestamp:
- Feb 16, 2008, 2:56:37 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r940 r952 40 40 17 Dec 07 GKY Make WPURLDEFAULTSETTINGS the fall back for ftp/httprun 41 41 13 Jan 08 GKY Get Subjectwidth/Subjectleft working in the collector. 42 12 Feb 08 SHL Compile OpenWatcom version into binary 42 43 43 44 ***********************************************************************/ … … 78 79 extern int _CRT_init(void); 79 80 extern void _CRT_term(void); 81 82 #ifdef __WATCOMC__ 83 #define a(x) #x 84 #define b(x) a(x) 85 // Must be global to prevent warnings 86 PSZ pszBuiltWith = "Built with OpenWatcom version " b(__WATCOMC__); 87 #undef b 88 #undef a 89 #endif 80 90 81 91 static PSZ pszSrcFile = __FILE__; … … 831 841 WinRegisterClass(hab, 832 842 WC_TOOLBACK, 833 834 835 843 ToolBackProc, 844 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 845 sizeof(PVOID)); 836 846 WinRegisterClass(hab, 837 847 WC_DRIVEBACK, … … 1310 1320 size = sizeof(BOOL); 1311 1321 PrfQueryProfileData(fmprof, appname, "SubjectLengthMax", &fSubjectLengthMax, 1312 1322 &size); 1313 1323 if (fSubjectLengthMax) 1314 1324 SubjectDisplayWidth = 0;
Note:
See TracChangeset
for help on using the changeset viewer.