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
c6643c61
Commit
c6643c61
authored
Feb 07, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskmgr: Make some functions static.
parent
0ecc22be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
applpage.c
programs/taskmgr/applpage.c
+1
-1
graphctl.c
programs/taskmgr/graphctl.c
+4
-4
No files found.
programs/taskmgr/applpage.c
View file @
c6643c61
...
...
@@ -507,7 +507,7 @@ void RefreshApplicationPage(void)
SetEvent
(
hApplicationPageEvent
);
}
void
UpdateApplicationListControlViewSetting
(
void
)
static
void
UpdateApplicationListControlViewSetting
(
void
)
{
DWORD
dwStyle
=
GetWindowLong
(
hApplicationPageListCtrl
,
GWL_STYLE
);
...
...
programs/taskmgr/graphctl.c
View file @
c6643c61
...
...
@@ -124,7 +124,7 @@ TGraphCtrl::~TGraphCtrl(void)
}
#endif
void
GraphCtrl_Resize
(
TGraphCtrl
*
this
)
static
void
GraphCtrl_Resize
(
TGraphCtrl
*
this
)
{
/* NOTE: Resize automatically gets called during the setup of the control */
GetClientRect
(
this
->
m_hWnd
,
&
this
->
m_rectClient
);
...
...
@@ -165,7 +165,7 @@ BOOL GraphCtrl_Create(TGraphCtrl* this, HWND hWnd, HWND hParentWnd, UINT nID)
return
0
;
}
void
GraphCtrl_InvalidateCtrl
(
TGraphCtrl
*
this
)
static
void
GraphCtrl_InvalidateCtrl
(
TGraphCtrl
*
this
)
{
/* There is a lot of drawing going on here - particularly in terms of */
/* drawing the grid. Don't panic, this is all being drawn (only once) */
...
...
@@ -374,7 +374,7 @@ void GraphCtrl_SetBackgroundColor(TGraphCtrl* this, COLORREF color)
GraphCtrl_InvalidateCtrl
(
this
);
}
void
GraphCtrl_DrawPoint
(
TGraphCtrl
*
this
)
static
void
GraphCtrl_DrawPoint
(
TGraphCtrl
*
this
)
{
/* this does the work of "scrolling" the plot to the left
* and appending a new data point all of the plotting is
...
...
@@ -477,7 +477,7 @@ double GraphCtrl_AppendPoint(TGraphCtrl* this,
return
dPrevious
;
}
void
GraphCtrl_Paint
(
TGraphCtrl
*
this
,
HWND
hWnd
,
HDC
dc
)
static
void
GraphCtrl_Paint
(
TGraphCtrl
*
this
,
HWND
hWnd
,
HDC
dc
)
{
HDC
memDC
;
HBITMAP
memBitmap
;
...
...
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