Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f8ae0184
Commit
f8ae0184
authored
Feb 17, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Feb 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winnls32: Restore the correct export names.
parent
2397171c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
winnls.c
dlls/winnls.dll16/winnls.c
+5
-2
winnls.c
dlls/winnls32/winnls.c
+4
-4
winnls32.spec
dlls/winnls32/winnls32.spec
+2
-2
No files found.
dlls/winnls.dll16/winnls.c
View file @
f8ae0184
...
...
@@ -24,12 +24,15 @@
#include "wownt32.h"
#include "wine/winuser16.h"
BOOL
WINAPI
WINNLS32EnableIME
(
HWND
hWnd
,
BOOL
fEnable
);
BOOL
WINAPI
WINNLS32GetEnableStatus
(
HWND
hWnd
);
/***********************************************************************
* WINNLSEnableIME (WINNLS.16)
*/
BOOL
WINAPI
WINNLSEnableIME16
(
HWND16
hwnd
,
BOOL
enable
)
{
return
WINNLSEnableIME
(
HWND_32
(
hwnd
),
enable
);
return
WINNLS
32
EnableIME
(
HWND_32
(
hwnd
),
enable
);
}
/***********************************************************************
...
...
@@ -37,5 +40,5 @@ BOOL WINAPI WINNLSEnableIME16( HWND16 hwnd, BOOL enable )
*/
BOOL
WINAPI
WINNLSGetEnableStatus16
(
HWND16
hwnd
)
{
return
WINNLSGetEnableStatus
(
HWND_32
(
hwnd
)
);
return
WINNLS
32
GetEnableStatus
(
HWND_32
(
hwnd
)
);
}
dlls/winnls32/winnls.c
View file @
f8ae0184
...
...
@@ -39,17 +39,17 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
}
/***********************************************************************
* WINNLSGetEnableStatus (WINNLS32.2)
* WINNLS
32
GetEnableStatus (WINNLS32.2)
*/
BOOL
WINAPI
WINNLSGetEnableStatus
(
HWND
hWnd
)
BOOL
WINAPI
WINNLS
32
GetEnableStatus
(
HWND
hWnd
)
{
return
FALSE
;
}
/***********************************************************************
* WINNLSEnableIME (WINNLS32.1)
* WINNLS
32
EnableIME (WINNLS32.1)
*/
BOOL
WINAPI
WINNLSEnableIME
(
HWND
hWnd
,
BOOL
fEnable
)
BOOL
WINAPI
WINNLS
32
EnableIME
(
HWND
hWnd
,
BOOL
fEnable
)
{
/* fake return of previous status. is this what this function should do ? */
return
!
fEnable
;
...
...
dlls/winnls32/winnls32.spec
View file @
f8ae0184
1 stdcall WINNLSEnableIME(long long)
2 stdcall WINNLSGetEnableStatus(long)
1 stdcall WINNLS
32
EnableIME(long long)
2 stdcall WINNLS
32
GetEnableStatus(long)
3 stub WINNLS32GetIMEHotKey
21 stub IMP32GetIME
22 stub IMP32QueryIME
...
...
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