Changeset 1678 for trunk/src/win32k/pe2lx/pe2lxmain.cpp
- Timestamp:
- Nov 10, 1999, 2:45:38 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/pe2lx/pe2lxmain.cpp
r1467 r1678 1 /* $Id: pe2lxmain.cpp,v 1. 3 1999-10-27 02:03:01bird Exp $1 /* $Id: pe2lxmain.cpp,v 1.4 1999-11-10 01:45:38 bird Exp $ 2 2 * 3 3 * Pe2Lx main program. (Ring 3 only!) 4 4 * 5 5 * Copyright (c) 1999 knut st. osmundsen 6 * 7 * Project Odin Software License can be found in LICENSE.TXT 6 8 * 7 9 */ … … 28 30 #include <stdlib.h> 29 31 #include "OS2Krnl.h" 32 #include "modulebase.h" 30 33 #include "pe2lx.h" 31 34 #include <stdio.h> … … 92 95 switch (*psz) 93 96 { 94 case '0': Pe2Lx::ulInfoLevel = Pe2Lx::Quiet; break;95 case '1': Pe2Lx::ulInfoLevel = Pe2Lx::Error; break;96 case '2': Pe2Lx::ulInfoLevel = Pe2Lx::Warning; break;97 case '3': Pe2Lx::ulInfoLevel = Pe2Lx::Info; break;98 case '4': Pe2Lx::ulInfoLevel = Pe2Lx::InfoAll; break;97 case '0': ModuleBase::ulInfoLevel = ModuleBase::Quiet; break; 98 case '1': ModuleBase::ulInfoLevel = ModuleBase::Error; break; 99 case '2': ModuleBase::ulInfoLevel = ModuleBase::Warning; break; 100 case '3': ModuleBase::ulInfoLevel = ModuleBase::Info; break; 101 case '4': ModuleBase::ulInfoLevel = ModuleBase::InfoAll; break; 99 102 } 100 103 }
Note:
See TracChangeset
for help on using the changeset viewer.