Changeset 47 for trunk/dll/sysinfo.c


Ignore:
Timestamp:
Feb 12, 2003, 9:15:30 PM (23 years ago)
Author:
root
Message:

Enable display

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
    116#define INCL_DOS
    217#define INCL_WIN
     
    1227#pragma alloc_text(SYSINFO,SysInfoDlgProc,RunRmview)
    1328
    14 
    15 #ifdef NEVER
    1629
    1730VOID RunRmview (VOID *arg) {
     
    8699}
    87100
    88 #endif
    89 
    90 
    91 MRESULT EXPENTRY SysInfoDlgProc (HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2) {
    92 
    93 #ifdef NEVER
     101MRESULT EXPENTRY SysInfoDlgProc (HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2)
     102{
     103
    94104  static HWND     me = (HWND)0;
    95105  static LONG     ypos = 0;
     
    314324              case SV_CXBYTEALIGN:
    315325              case SV_CYBYTEALIGN:
    316               case SV_CYMOTION:
    317               case SV_CXMOTION:
     326              case SV_CYMOTIONSTART:
     327              case SV_CXMOTIONSTART:
    318328              case SV_CYDBLCLK:
    319329              case SV_CXDBLCLK:
     
    432442        }
    433443      }
     444#     ifdef NEVER       // fixme
    434445      _beginthread(RunRmview,NULL,65536,(PVOID)hwnd);
     446#     endif
    435447      break;
    436448
     
    473485  }
    474486
    475 #endif
    476 
    477487  return WinDefDlgProc(hwnd,msg,mp1,mp2);
    478488}
Note: See TracChangeset for help on using the changeset viewer.