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
e89f6c44
Commit
e89f6c44
authored
Sep 09, 2000
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 09, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented TCM_GETROWCOUNT.
parent
73925ab1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
tab.c
dlls/comctl32/tab.c
+9
-2
No files found.
dlls/comctl32/tab.c
View file @
e89f6c44
...
...
@@ -1656,6 +1656,14 @@ static void TAB_Refresh (HWND hwnd, HDC hdc)
SelectObject
(
hdc
,
hOldFont
);
}
static
DWORD
TAB_GetRowCount
(
HWND
hwnd
)
{
TAB_INFO
*
infoPtr
=
TAB_GetInfoPtr
(
hwnd
);
return
infoPtr
->
uNumRows
;
}
static
LRESULT
TAB_SetRedraw
(
HWND
hwnd
,
WPARAM
wParam
)
{
...
...
@@ -2361,8 +2369,7 @@ TAB_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
0
;
case
TCM_GETROWCOUNT
:
FIXME
(
"Unimplemented msg TCM_GETROWCOUNT
\n
"
);
return
0
;
return
TAB_GetRowCount
(
hwnd
);
case
TCM_GETUNICODEFORMAT
:
FIXME
(
"Unimplemented msg TCM_GETUNICODEFORMAT
\n
"
);
...
...
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