Changeset 1661


Ignore:
Timestamp:
Nov 9, 1999, 3:16:43 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Odin.ini.txt

    r1381 r1661  
    1 /* $Id: Odin.ini.txt,v 1.2 1999-10-20 16:49:24 cbratschi Exp $ */
     1/* $Id: Odin.ini.txt,v 1.3 1999-11-09 14:13:46 sandervl Exp $ */
    22
    33Odin initialization file documentation
     
    2323                example: e:\win32
    2424
     25[DLLRENAMEWIN]
     26OLE32=OLE32OS2
     27NETAPI32=WNETAP32
     28
     29[DLLRENAMEOS2]
     30OLE32OS2=OLE32
     31WNETAP32=NETAPI32
     32
    2533Odin.ini is stored in the directory where the environment string
    2634ODIN_INI points to. The default path is the directory of
  • trunk/changelog

    r1653 r1661  
    1  /* $Id: changelog,v 1.426 1999-11-09 09:31:14 phaller Exp $ */
     1 /* $Id: changelog,v 1.427 1999-11-09 14:13:45 sandervl Exp $ */
     2
     3 99-11-09: Sander van Leeuwen <sandervl@xs4all.nl>
     4        - OLE32: Renamed dll to OLE32OS2 to avoid conflicts with Lotus SmartSuite's
     5                 OLE32.dll
     6        - OLE32/OLEAUT32/AVIFIL32: compilation fixes
     7        - KERNEL32: Fixed lstrcpynAtoW & lstrcpynWtoA, OS/2 unicode api
     8                    translated up to maxlen characters -> heap corruption
     9                    in Solitaire. Translate upto min(stringlength+1, maxlen).
     10                    Also, terminate at strlen(strlength), not maxbuf-1 (lstrcpynWtoA)
     11        - KERNEL32: Added code for renaming dlls (i.e. OLE32 <-> OLE32OS2)
     12                    Odin.ini in bin directory needs to be present for PE loader
     13                    (includes renaming entries for OLE32 & NETAPI32)
     14          NOTE: Dll name in ole32.lib has changed, so a complete recompilation
     15                is required!
     16          NOTE 2: We might need to add some code to the file io apis in case
     17                  dirty apps try to read directly from system dlls.
     18        - KERNEL32: No need to export private apis by name & ordinal (ord is enough)
    219
    320 99-11-09: Patrick Haller <phaller@gmx.net>
  • trunk/src/oleaut32/makefile

    r879 r1661  
    1 #/* $Id: makefile,v 1.4 1999-09-08 15:23:22 davidr Exp $ */
     1#/* $Id: makefile,v 1.5 1999-11-09 14:16:43 sandervl Exp $ */
    22#
    33# PD-Win32 API
     
    6161
    6262clean:
    63         $(RM) *.obj *.lib *.dll *~ *.map *.pch 
     63        $(RM) *.obj *.lib *.dll *.map *.pch     
    6464        $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    6565        $(RM) $(PDWIN32_LIB)\$(TARGET).lib
Note: See TracChangeset for help on using the changeset viewer.