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
10e0867f
Commit
10e0867f
authored
Feb 02, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Use correct integral type.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7a0fb40c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
input.c
dlls/user32/input.c
+1
-1
spy.c
dlls/user32/spy.c
+1
-1
user_private.h
dlls/user32/user_private.h
+1
-1
win.c
dlls/user32/win.c
+2
-1
No files found.
dlls/user32/input.c
View file @
10e0867f
...
...
@@ -49,7 +49,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
win
);
WINE_DECLARE_DEBUG_CHANNEL
(
keyboard
);
INT
global_key_state_counter
=
0
;
LONG
global_key_state_counter
=
0
;
/***********************************************************************
* get_key_state
...
...
dlls/user32/spy.c
View file @
10e0867f
...
...
@@ -2045,7 +2045,7 @@ typedef struct
WCHAR
wnd_name
[
16
];
/* window name for message */
}
SPY_INSTANCE
;
static
int
indent_tls_index
=
TLS_OUT_OF_INDEXES
;
static
LONG
indent_tls_index
=
TLS_OUT_OF_INDEXES
;
/***********************************************************************
* get_indent_level
...
...
dlls/user32/user_private.h
View file @
10e0867f
...
...
@@ -120,7 +120,7 @@ struct rawinput_thread_data
RAWINPUT
buffer
[
1
];
/* rawinput message data buffer */
};
extern
INT
global_key_state_counter
DECLSPEC_HIDDEN
;
extern
LONG
global_key_state_counter
DECLSPEC_HIDDEN
;
extern
BOOL
(
WINAPI
*
imm_register_window
)(
HWND
)
DECLSPEC_HIDDEN
;
extern
void
(
WINAPI
*
imm_unregister_window
)(
HWND
)
DECLSPEC_HIDDEN
;
#define WM_IME_INTERNAL 0x287
...
...
dlls/user32/win.c
View file @
10e0867f
...
...
@@ -4192,7 +4192,8 @@ BOOL WINAPI GetProcessDefaultLayout( DWORD *layout )
if
(
process_layout
==
~
0u
)
{
WCHAR
*
str
,
buffer
[
MAX_PATH
];
DWORD
i
,
len
,
version_layout
=
0
;
DWORD
i
,
version_layout
=
0
;
UINT
len
;
DWORD
user_lang
=
GetUserDefaultLangID
();
DWORD
*
languages
;
void
*
data
=
NULL
;
...
...
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