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
c05ea50a
Commit
c05ea50a
authored
May 17, 2011
by
Andrew Nguyen
Committed by
Alexandre Julliard
May 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskmgr: Remove all TCHAR macro usage in graph drawing code.
parent
e5072fa6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
graph.c
programs/taskmgr/graph.c
+3
-3
graphctl.c
programs/taskmgr/graphctl.c
+1
-1
No files found.
programs/taskmgr/graph.c
View file @
c05ea50a
...
...
@@ -439,7 +439,7 @@ Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
hdc
=
BeginPaint
(
hWnd
,
&
ps
);
WindowId
=
GetWindowLongPtr
(
hWnd
,
GWLP_ID
);
WindowId
=
GetWindowLongPtr
W
(
hWnd
,
GWLP_ID
);
switch
(
WindowId
)
{
...
...
@@ -459,9 +459,9 @@ Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
return
0
;
}
/*
* We pass on all non-handled messages
*/
return
CallWindowProc
((
WNDPROC
)
OldGraphWndProc
,
hWnd
,
message
,
wParam
,
lParam
);
return
CallWindowProc
W
(
OldGraphWndProc
,
hWnd
,
message
,
wParam
,
lParam
);
}
programs/taskmgr/graphctl.c
View file @
c05ea50a
...
...
@@ -622,5 +622,5 @@ GraphCtrl_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
/*
* We pass on all non-handled messages
*/
return
CallWindowProc
((
WNDPROC
)
OldGraphCtrlWndProc
,
hWnd
,
message
,
wParam
,
lParam
);
return
CallWindowProc
W
(
OldGraphCtrlWndProc
,
hWnd
,
message
,
wParam
,
lParam
);
}
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