Ignore:
Timestamp:
Oct 29, 1999, 7:02:34 PM (26 years ago)
Author:
bird
Message:

Tried to disable pe2lx logging when the quiet option is specified.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/ldr/ldr.cpp

    r1467 r1512  
    1 /* $Id: ldr.cpp,v 1.3 1999-10-27 02:02:58 bird Exp $
     1/* $Id: ldr.cpp,v 1.4 1999-10-29 17:02:34 bird Exp $
    22 *
    33 * ldr.cpp - Loader helpers.
     
    3232#include "avl.h"
    3333#include "ldr.h"
    34 
     34#include "options.h"
    3535
    3636
     
    248248    pMTERoot = NULL;
    249249
     250    /* set pe2lx according to quite/verbose */
     251    if (options.fQuiet)
     252        Pe2Lx::ulInfoLevel = Pe2Lx::Quiet;
     253    else
     254        Pe2Lx::ulInfoLevel = Pe2Lx::Info;
     255
    250256    return rc;
    251257}
Note: See TracChangeset for help on using the changeset viewer.