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
bc883009
Commit
bc883009
authored
Oct 27, 2004
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Oct 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanups.
parent
5873eb50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
comboex.c
dlls/comctl32/comboex.c
+3
-5
progress.c
dlls/comctl32/progress.c
+3
-3
No files found.
dlls/comctl32/comboex.c
View file @
bc883009
...
...
@@ -47,7 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(comboex);
/* Item structure */
typedef
struct
{
VOID
*
next
;
void
*
next
;
UINT
mask
;
LPWSTR
pszText
;
LPWSTR
pszTemp
;
...
...
@@ -126,10 +126,8 @@ typedef struct
/* Things common to the entire DLL */
static
LRESULT
WINAPI
COMBOEX_EditWndProc
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
WINAPI
COMBOEX_ComboWndProc
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
WINAPI
COMBOEX_EditWndProc
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
WINAPI
COMBOEX_ComboWndProc
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
COMBOEX_Destroy
(
COMBOEX_INFO
*
infoPtr
);
typedef
INT
(
WINAPI
*
cmp_func_t
)(
LPCWSTR
,
LPCWSTR
);
...
...
dlls/comctl32/progress.c
View file @
bc883009
...
...
@@ -493,7 +493,7 @@ static DWORD PROGRESS_SetRange (PROGRESS_INFO *infoPtr, int low, int high)
* ProgressWindowProc
*/
static
LRESULT
WINAPI
ProgressWindowProc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
WPARAM
wParam
,
LPARAM
lParam
)
{
PROGRESS_INFO
*
infoPtr
;
...
...
@@ -654,7 +654,7 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
*
* Registers the progress bar window class.
*/
VOID
PROGRESS_Register
(
void
)
void
PROGRESS_Register
(
void
)
{
WNDCLASSW
wndClass
;
...
...
@@ -675,7 +675,7 @@ VOID PROGRESS_Register (void)
*
* Unregisters the progress bar window class.
*/
VOID
PROGRESS_Unregister
(
void
)
void
PROGRESS_Unregister
(
void
)
{
UnregisterClassW
(
PROGRESS_CLASSW
,
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