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
7d81ca1c
Commit
7d81ca1c
authored
Jan 08, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhlp32: Make some functions static in winhelp.c.
parent
2364498d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
winhelp.c
programs/winhlp32/winhelp.c
+3
-3
winhelp.h
programs/winhlp32/winhelp.h
+0
-1
No files found.
programs/winhlp32/winhelp.c
View file @
7d81ca1c
...
...
@@ -194,7 +194,7 @@ BOOL WINHELP_GetOpenFileName(LPSTR lpszFile, int len)
*
* WINHELP_MessageBoxIDS_s
*/
INT
WINHELP_MessageBoxIDS_s
(
UINT
ids_text
,
LPCSTR
str
,
UINT
ids_title
,
WORD
type
)
static
INT
WINHELP_MessageBoxIDS_s
(
UINT
ids_text
,
LPCSTR
str
,
UINT
ids_title
,
WORD
type
)
{
CHAR
text
[
MAX_STRING_LEN
];
CHAR
newtext
[
MAX_STRING_LEN
+
MAX_PATH
];
...
...
@@ -1164,7 +1164,7 @@ struct index_data
* WINHELP_IndexDlgProc
*
*/
INT_PTR
CALLBACK
WINHELP_IndexDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
INT_PTR
CALLBACK
WINHELP_IndexDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
struct
index_data
*
id
;
int
sel
;
...
...
@@ -1232,7 +1232,7 @@ INT_PTR CALLBACK WINHELP_IndexDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM
* WINHELP_SearchDlgProc
*
*/
INT_PTR
CALLBACK
WINHELP_SearchDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
INT_PTR
CALLBACK
WINHELP_SearchDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
struct
index_data
*
id
;
...
...
programs/winhlp32/winhelp.h
View file @
7d81ca1c
...
...
@@ -149,7 +149,6 @@ BOOL WINHELP_OpenHelpWindow(HLPFILE_PAGE* (*)(HLPFILE*, LONG, ULONG*),
BOOL
WINHELP_GetOpenFileName
(
LPSTR
,
int
);
BOOL
WINHELP_CreateIndexWindow
(
BOOL
);
void
WINHELP_DeleteBackSet
(
WINHELP_WINDOW
*
);
INT
WINHELP_MessageBoxIDS_s
(
UINT
,
LPCSTR
,
UINT
,
WORD
);
HLPFILE
*
WINHELP_LookupHelpFile
(
LPCSTR
lpszFile
);
HLPFILE_WINDOWINFO
*
WINHELP_GetWindowInfo
(
HLPFILE
*
hlpfile
,
LPCSTR
name
);
void
WINHELP_LayoutMainWindow
(
WINHELP_WINDOW
*
win
);
...
...
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