Changeset 6397 for trunk/src/user32


Ignore:
Timestamp:
Jul 28, 2001, 8:04:35 PM (24 years ago)
Author:
sandervl
Message:

updates

Location:
trunk/src/user32
Files:
3 edited

Legend:

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

    r6375 r6397  
    8787         ParseLogStatusUSER32();
    8888
     89         InitializeKernel32();
     90
    8991         hInstanceUser32 = RegisterLxDll(hModule, 0, (PVOID)&_Resource_PEResTab,
    9092                                         USER32_MAJORIMAGE_VERSION, USER32_MINORIMAGE_VERSION,
  • trunk/src/user32/user32.cpp

    r6339 r6397  
    1 /* $Id: user32.cpp,v 1.109 2001-07-15 14:58:07 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.110 2001-07-28 18:02:50 sandervl Exp $ */
    22
    33/*
     
    973973}
    974974
    975 /* Process and Thread Functions */
    976 
    977 //******************************************************************************
    978 //DWORD idAttach;   /* thread to attach */
    979 //DWORD idAttachTo; /* thread to attach to  */
    980 //BOOL fAttach; /* attach or detach */
    981 //******************************************************************************
    982 BOOL WIN32API AttachThreadInput(DWORD idAttach, DWORD idAttachTo, BOOL fAttach)
    983 {
    984   dprintf(("USER32:  AttachThreadInput, not implemented\n"));
    985   return(TRUE);
    986 }
    987 //******************************************************************************
    988 //******************************************************************************
    989 DWORD WIN32API WaitForInputIdle(HANDLE hProcess, DWORD dwTimeOut)
    990 {
    991   dprintf(("USER32: WaitForInputIdle %x %d\n", hProcess, dwTimeOut));
    992 
    993   if(fVersionWarp3) {
    994         Sleep(1000);
    995         return 0;       
    996   }
    997   else  return O32_WaitForInputIdle(hProcess, dwTimeOut);
    998 }
    999 
    1000975/* Help Functions */
    1001976
  • trunk/src/user32/window.cpp

    r6395 r6397  
    1 /* $Id: window.cpp,v 1.102 2001-07-28 13:43:54 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.103 2001-07-28 18:02:50 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    18721872
    18731873    hwnd = Win32ToOS2Handle(hWnd);
    1874     hwnd = OS2ToWin32Handle(O32_GetLastActivePopup(hwnd));
     1874////    hwnd = OS2ToWin32Handle(O32_GetLastActivePopup(hwnd));
    18751875
    18761876    dprintf(("GetLastActivePopup %x returned %x NOT CORRECTLY IMPLEMENTED", hWnd, hwnd));
    1877     return hwnd;
     1877    return 0;
    18781878}
    18791879//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.