Changeset 8596 for trunk/tools


Ignore:
Timestamp:
Jun 8, 2002, 9:31:40 AM (23 years ago)
Author:
sandervl
Message:

KSO: compile fix

Location:
trunk/tools/wrc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/wrc/utils.c

    r7855 r8596  
    444444}
    445445
    446 int strcasecmp( char *p1, char *p2 )
     446INT WINAPI strcasecmp( LPCSTR p1, LPCSTR p2 )
    447447{
    448448    return stricmp( p1, p2 );
  • trunk/tools/wrc/utils.h

    r6112 r8596  
    4545
    4646#if defined(__IBMC__) || defined(__IBMCPP__)
    47 int strcasecmp( char *p1, char *p2 );
     47#undef strcasecmp
     48INT WINAPI strcasecmp(LPCSTR p1, LPCSTR p2);
    4849
    4950/* Borrowed from Apache NT Port and PHP */
Note: See TracChangeset for help on using the changeset viewer.