Sweden-Number/dlls/ole2nls.dll16/ole2nls.c

132 lines
3.6 KiB
C
Raw Normal View History

2000-05-07 20:30:44 +02:00
/*
* OLE2NLS library
*
* Copyright 1995 Martin von Loewis
* Copyright 1998 David Lee Lambert
2008-10-18 19:20:29 +02:00
* Copyright 2000 Julio César Gázquez
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
2000-05-07 20:30:44 +02:00
*/
#include "config.h"
2000-05-07 20:30:44 +02:00
#include <string.h>
#include <stdarg.h>
2000-05-07 20:30:44 +02:00
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <locale.h>
2000-05-07 20:30:44 +02:00
#include "windef.h"
#include "winbase.h"
2000-05-07 20:30:44 +02:00
#include "winnls.h"
#include "winuser.h"
#include "wine/winbase16.h"
#include "wine/debug.h"
2000-05-07 20:30:44 +02:00
WINE_DEFAULT_DEBUG_CHANNEL(ole);
2000-05-07 20:30:44 +02:00
static LPVOID lpNLSInfo = NULL;
/******************************************************************************
2001-07-02 21:59:40 +02:00
* GetLocaleInfoA [OLE2NLS.5]
2000-05-07 20:30:44 +02:00
* Is the last parameter really WORD for Win16?
*/
INT16 WINAPI GetLocaleInfo16(LCID lcid,LCTYPE LCType,LPSTR buf,INT16 len)
{
return GetLocaleInfoA(lcid,LCType,buf,len);
}
/******************************************************************************
2001-07-02 21:59:40 +02:00
* GetStringTypeA [OLE2NLS.7]
2000-05-07 20:30:44 +02:00
*/
BOOL16 WINAPI GetStringType16(LCID locale,DWORD dwInfoType,LPCSTR src,
INT16 cchSrc,LPWORD chartype)
{
return GetStringTypeExA(locale,dwInfoType,src,cchSrc,chartype);
}
2001-06-28 19:59:22 +02:00
/******************************************************************************
* GetUserDefaultLCID [OLE2NLS.1]
*/
LCID WINAPI GetUserDefaultLCID16(void)
{
return GetUserDefaultLCID();
}
/******************************************************************************
* GetSystemDefaultLCID [OLE2NLS.2]
*/
LCID WINAPI GetSystemDefaultLCID16(void)
{
return GetSystemDefaultLCID();
}
/******************************************************************************
* GetUserDefaultLangID [OLE2NLS.3]
*/
LANGID WINAPI GetUserDefaultLangID16(void)
{
return GetUserDefaultLangID();
}
/******************************************************************************
* GetSystemDefaultLangID [OLE2NLS.4]
*/
LANGID WINAPI GetSystemDefaultLangID16(void)
{
return GetSystemDefaultLangID();
}
/******************************************************************************
* LCMapStringA [OLE2NLS.6]
*/
INT16 WINAPI LCMapString16(LCID lcid, DWORD mapflags, LPCSTR srcstr, INT16 srclen,
LPSTR dststr, INT16 dstlen)
2001-06-28 19:59:22 +02:00
{
return LCMapStringA(lcid, mapflags, srcstr, srclen, dststr, dstlen);
}
2000-05-07 20:30:44 +02:00
/***********************************************************************
2001-07-02 21:59:40 +02:00
* CompareStringA (OLE2NLS.8)
2000-05-07 20:30:44 +02:00
*/
INT16 WINAPI CompareString16(LCID lcid, DWORD flags, LPCSTR str1, INT16 len1, LPCSTR str2, INT16 len2)
2000-05-07 20:30:44 +02:00
{
return CompareStringA(lcid, flags, str1, len1, str2, len2);
2000-05-07 20:30:44 +02:00
}
/******************************************************************************
2001-06-19 20:20:47 +02:00
* RegisterNLSInfoChanged [OLE2NLS.9]
2000-05-07 20:30:44 +02:00
*/
BOOL16 WINAPI RegisterNLSInfoChanged16(LPVOID lpNewNLSInfo) /* [???] FIXME */
2000-05-07 20:30:44 +02:00
{
FIXME("Fully implemented, but doesn't effect anything.\n");
if (!lpNewNLSInfo) {
lpNLSInfo = NULL;
return TRUE;
}
else {
if (!lpNLSInfo) {
lpNLSInfo = lpNewNLSInfo;
return TRUE;
}
}
return FALSE; /* ptr not set */
2002-06-01 01:06:46 +02:00
}