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
9d5d7bff
Commit
9d5d7bff
authored
Aug 02, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Make some functions static.
parent
94207adc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
chm.c
dlls/hhctrl.ocx/chm.c
+1
-1
help.c
dlls/hhctrl.ocx/help.c
+3
-3
No files found.
dlls/hhctrl.ocx/chm.c
View file @
9d5d7bff
...
...
@@ -46,7 +46,7 @@ static LPWSTR CHM_ANSIToUnicode(LPCSTR ansi)
}
/* Reads a string from the #STRINGS section in the CHM file */
LPWSTR
CHM_ReadString
(
CHMInfo
*
pChmInfo
,
DWORD
dwOffset
)
static
LPWSTR
CHM_ReadString
(
CHMInfo
*
pChmInfo
,
DWORD
dwOffset
)
{
LARGE_INTEGER
liOffset
;
IStorage
*
pStorage
=
pChmInfo
->
pStorage
;
...
...
dlls/hhctrl.ocx/help.c
View file @
9d5d7bff
...
...
@@ -148,7 +148,7 @@ static void SB_OnMouseMove(HWND hWnd, WPARAM wParam, LPARAM lParam)
return
;
}
LRESULT
CALLBACK
SizeBar_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
SizeBar_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
message
)
{
...
...
@@ -264,7 +264,7 @@ static void Child_OnPaint(HWND hWnd)
EndPaint
(
hWnd
,
&
ps
);
}
LRESULT
CALLBACK
Child_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
Child_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
message
)
{
...
...
@@ -619,7 +619,7 @@ static void Help_OnSize(HWND hWnd)
WB_ResizeBrowser
(
pHHInfo
->
pWBInfo
,
rc
.
right
-
dwSize
,
rc
.
bottom
-
dwSize
);
}
LRESULT
CALLBACK
Help_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
Help_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
PAINTSTRUCT
ps
;
HDC
hdc
;
...
...
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