Changeset 47 for trunk/dll/sysinfo.c
- Timestamp:
- Feb 12, 2003, 9:15:30 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/sysinfo.c
r2 r47 1 2 /*********************************************************************** 3 4 $Id$ 5 6 System Info Display 7 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2002, 2003 Steven H.Levine 10 11 Revisions 16 Oct 02 SHL - Baseline 12 08 Feb 03 SHL - Enable display 13 14 ***********************************************************************/ 15 1 16 #define INCL_DOS 2 17 #define INCL_WIN … … 12 27 #pragma alloc_text(SYSINFO,SysInfoDlgProc,RunRmview) 13 28 14 15 #ifdef NEVER16 29 17 30 VOID RunRmview (VOID *arg) { … … 86 99 } 87 100 88 #endif 89 90 91 MRESULT EXPENTRY SysInfoDlgProc (HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2) { 92 93 #ifdef NEVER 101 MRESULT EXPENTRY SysInfoDlgProc (HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2) 102 { 103 94 104 static HWND me = (HWND)0; 95 105 static LONG ypos = 0; … … 314 324 case SV_CXBYTEALIGN: 315 325 case SV_CYBYTEALIGN: 316 case SV_CYMOTION :317 case SV_CXMOTION :326 case SV_CYMOTIONSTART: 327 case SV_CXMOTIONSTART: 318 328 case SV_CYDBLCLK: 319 329 case SV_CXDBLCLK: … … 432 442 } 433 443 } 444 # ifdef NEVER // fixme 434 445 _beginthread(RunRmview,NULL,65536,(PVOID)hwnd); 446 # endif 435 447 break; 436 448 … … 473 485 } 474 486 475 #endif476 477 487 return WinDefDlgProc(hwnd,msg,mp1,mp2); 478 488 }
Note:
See TracChangeset
for help on using the changeset viewer.