Ignore:
Timestamp:
Feb 21, 2010, 5:33:53 PM (16 years ago)
Author:
rlwalsh
Message:

eliminate VACPP warning & info msgs - see Ticket #1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/pmwindow.cpp

    r21348 r21356  
    155155// We make sure PM is up and running for our purposes and init the existing
    156156// thread 0.
    157 //******************************************************************************
     157//*******************************************************************************
    158158BOOL InitPM()
    159159{
     
    498498
    499499                    SetWin32TIB();
    500                     while(hwndEnum = WinGetNextWindow(henum))
     500                    while((hwndEnum = WinGetNextWindow(henum)) != 0)
    501501                    {
    502502                        WinQueryWindowProcess(hwndEnum, &pidTemp, NULL);
     
    20922092                henum = WinBeginEnumWindows(HWND_DESKTOP);
    20932093
    2094                 while(hwndEnum = WinGetNextWindow(henum))
     2094                while((hwndEnum = WinGetNextWindow(henum)) != 0)
    20952095                {
    20962096                    WinQueryWindowProcess(hwndEnum, &pidTemp, NULL);
Note: See TracChangeset for help on using the changeset viewer.