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

EBs fixes + added export for msacm32

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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);
Note: See TracChangeset for help on using the changeset viewer.