Ignore:
Timestamp:
Sep 5, 2001, 2:58:00 PM (24 years ago)
Author:
bird
Message:

Added $Id:$ keyword.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/codepage.cpp

    r5764 r6646  
    1 /*
     1/* $Id: codepage.cpp,v 1.17 2001-09-05 12:57:58 bird Exp $
     2 *
    23 * Code page functions
    34 *
    45 * Based on Wine code (memory\codepage.c)
    5  * 
     6 *
    67 * Copyright 2000 Alexandre Julliard
    78 *
     
    2526#include "codepage.h"
    2627
    27 #define DBG_LOCALLOG    DBG_codepage
     28#define DBG_LOCALLOG    DBG_codepage
    2829#include "dbglocal.h"
    2930#endif
     
    9293
    9394    if (!ansi_cptable) init_codepages();  /* just in case */
    94    
     95
    9596    if ((table = get_locale_cp( lcid, LOCALE_IDEFAULTANSICODEPAGE ))) ansi_cptable = table;
    9697    if ((table = get_locale_cp( lcid, LOCALE_IDEFAULTMACCODEPAGE ))) mac_cptable = table;
     
    197198#endif
    198199
    199     if (!table) 
     200    if (!table)
    200201    {
    201202        SetLastError( ERROR_INVALID_PARAMETER );
     
    366367 *   dstlen [in]  Length of destination buffer
    367368 *   defchar [in] Default character to use for conversion if no exact
    368  *                  conversion can be made
     369 *          conversion can be made
    369370 *   used [out]   Set if default character was used in the conversion
    370371 *
Note: See TracChangeset for help on using the changeset viewer.