Changeset 6401 for trunk/src/user32


Ignore:
Timestamp:
Jul 29, 2001, 9:02:35 PM (24 years ago)
Author:
sandervl
Message:

custom build updates

Location:
trunk/src/user32
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/Makefile

    r6375 r6401  
    1 # $Id: Makefile,v 1.88 2001-07-20 15:34:15 sandervl Exp $
     1# $Id: Makefile,v 1.89 2001-07-29 18:59:26 sandervl Exp $
    22
    33#
     
    66#       user32.dll makefile
    77#
     8WRC_PREFIX_RESOURCE=1
    89
    910
  • trunk/src/user32/inituser32.cpp

    r6397 r6401  
    5959extern "C" {
    6060 //Win32 resource table (produced by wrc)
    61  extern DWORD _Resource_PEResTab;
     61 extern DWORD user32_PEResTab;
    6262}
    6363DWORD hInstanceUser32 = 0;
     
    8989         InitializeKernel32();
    9090
    91          hInstanceUser32 = RegisterLxDll(hModule, 0, (PVOID)&_Resource_PEResTab,
     91         hInstanceUser32 = RegisterLxDll(hModule, 0, (PVOID)&user32_PEResTab,
    9292                                         USER32_MAJORIMAGE_VERSION, USER32_MINORIMAGE_VERSION,
    9393                                         IMAGE_SUBSYSTEM_WINDOWS_GUI);
  • trunk/src/user32/oslibwin.cpp

    r6395 r6401  
    1 /* $Id: oslibwin.cpp,v 1.107 2001-07-28 13:43:53 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.108 2001-07-29 18:59:27 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    257257}
    258258//******************************************************************************
    259 //******************************************************************************
    260 APIRET OSLibDosBeep(ULONG freg,ULONG dur)
    261 {
    262     return DosBeep(freg,dur);
    263 }
    264 //******************************************************************************
    265 //******************************************************************************
    266259HWND OSLibWinQueryFocus(HWND hwndDeskTop)
    267260{
  • trunk/src/user32/user32.cpp

    r6397 r6401  
    1 /* $Id: user32.cpp,v 1.110 2001-07-28 18:02:50 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.111 2001-07-29 18:59:27 sandervl Exp $ */
    22
    33/*
     
    376376    {
    377377      case 0xFFFFFFFF:
    378         OSLibDosBeep(500,50);
     378        Beep(500,50);
    379379        return TRUE;
    380380      case MB_ICONASTERISK:
  • trunk/src/user32/user32lib.mak

    r6375 r6401  
    1 # $Id: user32lib.mak,v 1.1 2001-07-20 15:34:17 sandervl Exp $
     1# $Id: user32lib.mak,v 1.2 2001-07-29 18:59:28 sandervl Exp $
    22
    33#
     
    66#       common.lib makefile
    77#
     8WRC_PREFIX_RESOURCE=1
    89
    910
Note: See TracChangeset for help on using the changeset viewer.