Changeset 2364 for trunk/src


Ignore:
Timestamp:
Jan 8, 2000, 1:07:45 PM (26 years ago)
Author:
sandervl
Message:

JW: compile fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crtdll/crtdll.cpp

    r2198 r2364  
    1 /* $Id: crtdll.cpp,v 1.19 1999-12-24 18:40:41 sandervl Exp $ */
     1/* $Id: crtdll.cpp,v 1.20 2000-01-08 12:07:45 sandervl Exp $ */
    22
    33/*
     
    53235323 *                  wcscoll    (CRTDLL.503)
    53245324 */
    5325 int CDECL CRTDLL_wcscoll(const wchar_t *s1, const wchar_t *s2)
     5325DWORD CDECL CRTDLL_wcscoll(LPCWSTR str1, LPCWSTR str2)
    53265326{
    53275327  dprintf2(("CRTDLL: wcscoll\n"));
    5328   return (wcscoll(s1, s2));
     5328  return (wcscoll((const wchar_t*)str1, (const wchar_t*)str2));
    53295329}
    53305330
     
    53625362
    53635363/*********************************************************************
    5364  *                  wcstomb   (CRTDLL.521)
    5365  */
    5366 int CDECL CRTDLL_wctomb( char *s, wchar_t wchar )
     5364 *                  wctomb   (CRTDLL.521)
     5365 */
     5366int CDECL CRTDLL_wctomb( LPSTR dst, WCHAR ch )
    53675367{
    53685368  dprintf2(("CRTDLL: wctomb\n"));
    5369   return (wctomb(s,wchar));
     5369  return (wctomb((char*)dst,ch));
    53705370}
    53715371
Note: See TracChangeset for help on using the changeset viewer.