Changeset 1605 for trunk/src


Ignore:
Timestamp:
Nov 5, 1999, 10:16:57 AM (26 years ago)
Author:
sandervl
Message:

EBs fixes + added export for msacm32

Location:
trunk/src/kernel32
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.DEF

    r1490 r1605  
    1 ; $Id: KERNEL32.DEF,v 1.47 1999-10-28 12:01:11 sandervl Exp $
     1; $Id: KERNEL32.DEF,v 1.48 1999-11-05 09:16:56 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    10431043;shared memory allocation
    10441044    _smalloc__FUi                                                 @1271
     1045
     1046;Export for MSACM32
     1047    _wsnprintfA                                                   @2000
  • trunk/src/kernel32/atom.cpp

    r1275 r1605  
    1 /* $Id: atom.cpp,v 1.5 1999-10-14 01:47:39 bird Exp $ */
     1/* $Id: atom.cpp,v 1.6 1999-11-05 09:16:57 sandervl Exp $ */
    22
    33/*
     
    138138ATOM WIN32API GlobalFindAtomA( LPCSTR arg1)
    139139{
    140     dprintf(("KERNEL32:  OS2GlobalFindAtomA\n"));
     140    if (arg1 < (LPCSTR)0x10000)
     141      dprintf(("KERNEL32:  GlobalFindAtomA %#4x\n", arg1));
     142    else
     143      dprintf(("KERNEL32:  GlobalFindAtomA %s\n", arg1));
    141144    return O32_GlobalFindAtom(arg1);
    142145}
  • trunk/src/kernel32/heapstring.cpp

    r1484 r1605  
    1 /* $Id: heapstring.cpp,v 1.16 1999-10-27 18:36:36 phaller Exp $ */
     1/* $Id: heapstring.cpp,v 1.17 1999-11-05 09:16:57 sandervl Exp $ */
    22
    33/*
     
    1212 * Includes                                                                  *
    1313 *****************************************************************************/
     14#undef DEBUG
    1415
    1516#include <odin.h>
     
    446447           arg2));
    447448
     449  if(arg1 == NULL)
     450      return -1;
     451
     452  if(arg2 == NULL)
     453      return 1;
     454
    448455  return O32_lstrcmpi(arg1, arg2);
    449456}
     
    471478           arg2));
    472479
     480  if(arg1 == NULL)
     481      return -1;
     482
     483  if(arg2 == NULL)
     484      return 1;
     485
    473486  // NOTE: This function has no equivalent in uunidef.h
    474487  astr1 = UnicodeToAsciiString((LPWSTR)arg1);
    475488  astr2 = UnicodeToAsciiString((LPWSTR)arg2);
    476   rc = O32_lstrcmpi(astr1, astr2);
     489  rc = lstrcmpiA(astr1, astr2);
    477490  FreeAsciiString(astr2);
    478491  FreeAsciiString(astr1);
  • trunk/src/kernel32/kernel32exp.def

    r1472 r1605  
    652652    _PROFILE_SetOdinIniBool@12                @1269
    653653    _PROFILE_SaveOdinIni@0                    @1270
     654    _smalloc__FUi                             @1271
     655    _wsnprintfA                               @2000
Note: See TracChangeset for help on using the changeset viewer.