Changeset 1423
- Timestamp:
 - Oct 24, 1999, 1:02:17 AM (26 years ago)
 - Location:
 - trunk
 - Files:
 - 
      
- 2 edited
 
- 
          
  changelog (modified) (3 diffs)
 - 
          
  src/kernel32/windlllx.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/changelog
r1416 r1423 1 /* $Id: changelog,v 1.35 7 1999-10-23 16:42:53 cbratschiExp $ */1 /* $Id: changelog,v 1.358 1999-10-23 22:59:00 sandervl Exp $ */ 2 2 3 3 99-10-23: Christoph Bratschi <cbratschi@datacomm.ch> … … 10 10 Put message logging procedure in wndmsg.cpp. 11 11 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 12 17 - KERNEL32: Write logfiles to directory of kernel32 if executable is on 13 18 readonly device. … … 16 21 that aren't loaded. (LX or PE; PE not tested!) 17 22 - DSOUND: Made it compile again. (always pretends there's no soundcard in the system) 23 - SHELL32/COMCTL32: Changed file description in version resource 18 24 19 25 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 $ */ 2 2 3 3 /* … … 35 35 //Create LX Dll object and send process attach message 36 36 //System dlls set EntryPoint to 0 37 //Returns: Odin32 module handle 37 38 //****************************************************************************** 38 BOOLWIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint,39 PVOID pResData)39 DWORD WIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint, 40 PVOID pResData) 40 41 { 41 42 Win32LxDll *windll; … … 53 54 } 54 55 windll->AddRef(); 55 return windll->attachProcess(); 56 if(windll->attachProcess() == 0) 57 return 0; 58 59 return windll->getInstanceHandle(); 56 60 } 57 61 //******************************************************************************  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  