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
5ca73ac9
Commit
5ca73ac9
authored
May 11, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
May 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issues found by winapi_check.
parent
f93f998e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
listview.c
dlls/comctl32/listview.c
+0
-2
richedit.c
dlls/richedit/richedit.c
+2
-2
richedit.h
include/richedit.h
+1
-1
No files found.
dlls/comctl32/listview.c
View file @
5ca73ac9
...
...
@@ -1108,7 +1108,6 @@ static LRESULT LISTVIEW_MouseMove(HWND hwnd, WPARAM wParam, LPARAM lParam)
{
LISTVIEW_INFO
*
infoPtr
=
(
LISTVIEW_INFO
*
)
GetWindowLongA
(
hwnd
,
0
);
TRACKMOUSEEVENT
trackinfo
;
POINT
pt
;
/* see if we are supposed to be tracking mouse hovering */
if
(
infoPtr
->
dwExStyle
&
LVS_EX_TRACKSELECT
)
{
...
...
@@ -5554,7 +5553,6 @@ static LRESULT LISTVIEW_SetItemA(HWND hwnd, LPLVITEMA lpLVItem)
static
BOOL
LISTVIEW_SetItemCount
(
HWND
hwnd
,
INT
nItems
,
DWORD
dwFlags
)
{
LISTVIEW_INFO
*
infoPtr
=
(
LISTVIEW_INFO
*
)
GetWindowLongA
(
hwnd
,
0
);
LISTVIEW_ITEM
*
lpItem
=
NULL
;
FIXME
(
"(%d %08lx)stub!
\n
"
,
nItems
,
dwFlags
);
...
...
dlls/richedit/richedit.c
View file @
5ca73ac9
...
...
@@ -30,7 +30,7 @@ DWORD RICHED32_dwProcessesAttached = 0;
/* LPSTR RICHED32_aSubclass = (LPSTR)NULL; */
HMODULE
RICHED32_hModule
=
0
;
/*
/*
**********************************************************************
* RICHED32_LibMain [Internal] Initializes the internal 'RICHED32.DLL'.
*
* PARAMS
...
...
@@ -164,7 +164,7 @@ static LRESULT WINAPI RICHED32_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
}
/*
/*
**********************************************************************
* DllGetVersion [COMCTL32.25]
*
* Retrieves version information of the 'COMCTL32.DLL'
...
...
include/richedit.h
View file @
5ca73ac9
...
...
@@ -57,7 +57,7 @@ extern "C" {
#define EM_GETWORDBREAKPROCEX (WM_USER + 80)
#define EM_SETWORDBREAKPROCEX (WM_USER + 81)
typedef
DWORD
(
CALLBACK
*
EDITSTREAMCALLBACK
)(
DWORD
,
LPBYTE
,
LONG
,
LONG
);
typedef
DWORD
(
CALLBACK
*
EDITSTREAMCALLBACK
)(
DWORD
,
LPBYTE
,
LONG
,
LONG
*
);
typedef
struct
{
...
...
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