Changeset 1423


Ignore:
Timestamp:
Oct 24, 1999, 1:02:17 AM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r1416 r1423  
    1  /* $Id: changelog,v 1.357 1999-10-23 16:42:53 cbratschi Exp $ */
     1 /* $Id: changelog,v 1.358 1999-10-23 22:59:00 sandervl Exp $ */
    22
    33 99-10-23: Christoph Bratschi <cbratschi@datacomm.ch>
     
    1010                  Put message logging procedure in wndmsg.cpp.
    1111                  Don't log WM_KICKIDLE & WM_NCHITTEST messages. (sent too often)
     12                  Don't set capture to listbox window in comboboxes (after lbuttonup)
     13                  Use wrc to compile USER32 resources + added version resource
     14                  Fixed PMFRAME window position handlers and put them back.
     15                  (comboboxes now displayed properly)
     16
    1217        - KERNEL32: Write logfiles to directory of kernel32 if executable is on
    1318                    readonly device.
     
    1621                    that aren't loaded. (LX or PE; PE not tested!)
    1722        - DSOUND: Made it compile again. (always pretends there's no soundcard in the system)
     23        - SHELL32/COMCTL32: Changed file description in version resource
    1824
    1925 99-10-22: Daniela Engert <dani@ngrt.de>
  • trunk/src/kernel32/windlllx.cpp

    r1390 r1423  
    1 /* $Id: windlllx.cpp,v 1.3 1999-10-21 12:18:47 sandervl Exp $ */
     1/* $Id: windlllx.cpp,v 1.4 1999-10-23 23:02:17 sandervl Exp $ */
    22
    33/*
     
    3535//Create LX Dll object and send process attach message
    3636//System dlls set EntryPoint to 0
     37//Returns: Odin32 module handle
    3738//******************************************************************************
    38 BOOL WIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint,
    39                             PVOID pResData)
     39DWORD WIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint,
     40                             PVOID pResData)
    4041{
    4142 Win32LxDll *windll;
     
    5354   }
    5455   windll->AddRef();
    55    return windll->attachProcess();
     56   if(windll->attachProcess() == 0)
     57        return 0;
     58
     59   return windll->getInstanceHandle();
    5660}
    5761//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.