Changeset 18254


Ignore:
Timestamp:
Dec 30, 2001, 11:46:37 AM (23 years ago)
Author:
sandervl
Message:

removed some redundant logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/kernel32/ole2nls.cpp

    r17891 r18254  
    1 /* $Id: ole2nls.cpp,v 1.15 2001-11-14 12:30:40 phaller Exp $
     1/* $Id: ole2nls.cpp,v 1.16 2001-12-30 10:46:37 sandervl Exp $
    22 *
    33 *  National Language Support library
     
    19891989    LPSTR, dststr,   /* [out] destination buffer */
    19901990    INT, dstlen)     /* [in] destination buffer length */
     1991{
     1992  int i;
    19911993#else
    19921994INT WINAPI LCMapStringA(
     
    19992001    LPSTR dststr,   /* [out] destination buffer */
    20002002    INT dstlen)     /* [in] destination buffer length */
    2001 #endif
    20022003{
    20032004  int i;
     
    20052006  TRACE("(0x%04lx,0x%08lx,%s,%d,%p,%d)\n",
    20062007    lcid,mapflags,srcstr,srclen,dststr,dstlen);
     2008#endif
    20072009
    20082010  if ( ((dstlen!=0) && (dststr==NULL)) || (srcstr==NULL) )
     
    22462248    LCID, lcid,DWORD, mapflags,LPCWSTR, srcstr,INT, srclen,LPWSTR, dststr,
    22472249    INT, dstlen)
     2250{
     2251  int i;
     2252
    22482253#else
    22492254INT WINAPI LCMapStringW(
    22502255    LCID lcid,DWORD mapflags,LPCWSTR srcstr,INT srclen,LPWSTR dststr,
    22512256    INT dstlen)
    2252 #endif
    22532257{
    22542258  int i;
     
    22562260  TRACE("(0x%04lx,0x%08lx,%p,%d,%p,%d)\n",
    22572261                 lcid, mapflags, srcstr, srclen, dststr, dstlen);
     2262#endif
    22582263
    22592264  if ( ((dstlen!=0) && (dststr==NULL)) || (srcstr==NULL) )
Note: See TracChangeset for help on using the changeset viewer.