Changeset 179 for trunk/dll/init.c
- Timestamp:
- May 28, 2005, 7:43:20 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r161 r179 13 13 25 Nov 03 SHL InitFM3DLL: correct strings error mesage 14 14 23 May 05 SHL Use datamin.h 15 26 May 05 SHL Comments 15 16 16 17 ***********************************************************************/ … … 670 671 if(WinQueryClassInfo(hab,WC_CONTAINER,&clinfo)) 671 672 PFNWPCnr = clinfo.pfnWindowProc; 672 // saymsg(MB_ENTER,HWND_DESKTOP,"Container flags:","%08lx",clinfo.flClassStyle);673 // saymsg(MB_ENTER,HWND_DESKTOP,"Container flags:","%08lx",clinfo.flClassStyle); 673 674 if(WinQueryClassInfo(hab,WC_FRAME,&clinfo)) 674 675 PFNWPFrame = clinfo.pfnWindowProc; 675 // saymsg(MB_ENTER,HWND_DESKTOP,"Frame flags:","%08lx",clinfo.flClassStyle);676 // saymsg(MB_ENTER,HWND_DESKTOP,"Frame flags:","%08lx",clinfo.flClassStyle); 676 677 if(WinQueryClassInfo(hab,WC_BUTTON,&clinfo)) 677 678 PFNWPButton = clinfo.pfnWindowProc; 678 // saymsg(MB_ENTER,HWND_DESKTOP,"Button flags:","%08lx",clinfo.flClassStyle);679 // saymsg(MB_ENTER,HWND_DESKTOP,"Button flags:","%08lx",clinfo.flClassStyle); 679 680 if(WinQueryClassInfo(hab,WC_STATIC,&clinfo)) 680 681 PFNWPStatic = clinfo.pfnWindowProc; 681 // saymsg(MB_ENTER,HWND_DESKTOP,"Static flags:","%08lx",clinfo.flClassStyle);682 // saymsg(MB_ENTER,HWND_DESKTOP,"Static flags:","%08lx",clinfo.flClassStyle); 682 683 if(WinQueryClassInfo(hab,WC_MLE,&clinfo)) 683 684 PFNWPMLE = clinfo.pfnWindowProc; 684 // saymsg(MB_ENTER,HWND_DESKTOP,"MLE flags:","%08lx",clinfo.flClassStyle);685 // saymsg(MB_ENTER,HWND_DESKTOP,"MLE flags:","%08lx",clinfo.flClassStyle); 685 686 if(!PFNWPCnr || !PFNWPFrame || !PFNWPButton || !PFNWPStatic || !PFNWPMLE) { 686 687 DosBeep(50,100); … … 1366 1367 } 1367 1368 1368 // SHL added - fixme1369 1370 1369 int CheckVersion (int vermajor,int verminor) { 1371 1370 1372 int ret = 0; 1371 int ok = 0; 1372 1373 // fixme to do useful check - was missing in base source 1373 1374 1374 1375 #if 0 … … 1376 1377 *vermajor = VERMAJOR; 1377 1378 *verminor = VERMINOR; 1378 ret= 1;1379 ok = 1; 1379 1380 } 1380 1381 #endif 1381 ret= 1;1382 1383 return ret;1382 ok = 1; 1383 1384 return ok; 1384 1385 }
Note:
See TracChangeset
for help on using the changeset viewer.