You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
589 B
20 lines
589 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1996-1997, Microsoft Corporation.
|
|
//
|
|
// File: weblcid.hxx
|
|
//
|
|
// Contents: WEB Locale <==> LCID translation
|
|
//
|
|
// History: 96/Jan/3 DwightKr Created
|
|
// 97/Jan/7 AlanW Split from cgiesc.hxx
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
const LCID InvalidLCID = 0xFFFFFFFF;
|
|
|
|
LCID GetLCIDFromString( WCHAR * wcsLocale );
|
|
void GetStringFromLCID( LCID locale, WCHAR * pwcLocale );
|
|
|