4 * Copyright 1995 Martin von Loewis
5 * Copyright 1998 David Lee Lambert
6 * Copyright 2000 Julio César Gázquez
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
35 #include "wine/winbase16.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
41 static LPVOID lpNLSInfo
= NULL
;
43 /******************************************************************************
44 * GetLocaleInfoA [OLE2NLS.5]
45 * Is the last parameter really WORD for Win16?
47 INT16 WINAPI
GetLocaleInfo16(LCID lcid
,LCTYPE LCType
,LPSTR buf
,INT16 len
)
49 return GetLocaleInfoA(lcid
,LCType
,buf
,len
);
52 /******************************************************************************
53 * GetStringTypeA [OLE2NLS.7]
55 BOOL16 WINAPI
GetStringType16(LCID locale
,DWORD dwInfoType
,LPCSTR src
,
56 INT16 cchSrc
,LPWORD chartype
)
58 return GetStringTypeExA(locale
,dwInfoType
,src
,cchSrc
,chartype
);
61 /******************************************************************************
62 * GetUserDefaultLCID [OLE2NLS.1]
64 LCID WINAPI
GetUserDefaultLCID16(void)
66 return GetUserDefaultLCID();
69 /******************************************************************************
70 * GetSystemDefaultLCID [OLE2NLS.2]
72 LCID WINAPI
GetSystemDefaultLCID16(void)
74 return GetSystemDefaultLCID();
77 /******************************************************************************
78 * GetUserDefaultLangID [OLE2NLS.3]
80 LANGID WINAPI
GetUserDefaultLangID16(void)
82 return GetUserDefaultLangID();
85 /******************************************************************************
86 * GetSystemDefaultLangID [OLE2NLS.4]
88 LANGID WINAPI
GetSystemDefaultLangID16(void)
90 return GetSystemDefaultLangID();
93 /******************************************************************************
94 * LCMapStringA [OLE2NLS.6]
96 INT16 WINAPI
LCMapString16(LCID lcid
, DWORD mapflags
, LPCSTR srcstr
, INT16 srclen
,
97 LPSTR dststr
, INT16 dstlen
)
99 return LCMapStringA(lcid
, mapflags
, srcstr
, srclen
, dststr
, dstlen
);
102 /***********************************************************************
103 * CompareStringA (OLE2NLS.8)
105 INT16 WINAPI
CompareString16(LCID lcid
, DWORD flags
, LPCSTR str1
, INT16 len1
, LPCSTR str2
, INT16 len2
)
107 return CompareStringA(lcid
, flags
, str1
, len1
, str2
, len2
);
110 /******************************************************************************
111 * RegisterNLSInfoChanged [OLE2NLS.9]
113 BOOL16 WINAPI
RegisterNLSInfoChanged16(LPVOID lpNewNLSInfo
) /* [???] FIXME */
115 FIXME("Fully implemented, but doesn't effect anything.\n");
123 lpNLSInfo
= lpNewNLSInfo
;
128 return FALSE
; /* ptr not set */