Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
8ced8815
Commit
8ced8815
authored
Nov 07, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Nov 07, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implementation of RegisterNLSInfoChanged.
parent
161693e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
4 deletions
+31
-4
ole2nls.spec
if1632/ole2nls.spec
+4
-3
ole2nls.c
ole/ole2nls.c
+27
-1
No files found.
if1632/ole2nls.spec
View file @
8ced8815
...
...
@@ -9,6 +9,7 @@ type win16
6 stub LCMAPSTRINGA
7 pascal16 GetStringTypeA(long long str word ptr) GetStringType16
8 pascal16 CompareStringA(long long str word str word) CompareString16
#9 WEP
10 stub LIBMAIN
11 stub NOTIFYWINDOWPROC
9 pascal16 RegisterNLSInfoChanged(ptr) RegisterNLSInfoChanged16
#10 stub WEP
11 stub LIBMAIN
12 stub NOTIFYWINDOWPROC
ole/ole2nls.c
View file @
8ced8815
...
...
@@ -32,6 +32,8 @@ struct NLS_langlocale {
}
locvars
[
150
];
};
static
LPVOID
lpNLSInfo
=
NULL
;
#define LANG_BEGIN(l,s) { MAKELANGID(l,s), {
#define LOCVAL(type,value) {type,value},
...
...
@@ -257,7 +259,7 @@ LANG_END
};
/* Locale name to id map. used by EnumSystemLocales, GetLocalInfoA
/* Locale name to id map. used by EnumSystemLocales, GetLocal
e
InfoA
* MUST contain all #defines from winnls.h
* last entry has NULL name, 0 id.
*/
...
...
@@ -2477,6 +2479,30 @@ UINT WINAPI CompareStringW(DWORD lcid, DWORD fdwStyle,
}
/******************************************************************************
* RegisterNLSInfoChanged [OLE2NLS.10]
*/
BOOL16
WINAPI
RegisterNLSInfoChanged16
(
LPVOID
/*FIXME*/
lpNewNLSInfo
)
{
FIXME_
(
ole
)(
"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 */
}
/******************************************************************************
* OLE_GetFormatA [Internal]
*
* FIXME
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment