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
8b9ad4d3
Commit
8b9ad4d3
authored
Oct 09, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Oct 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Make internal functions static.
parent
e020eced
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
files.c
dlls/advpack/files.c
+4
-4
install.c
dlls/advpack/install.c
+3
-3
No files found.
dlls/advpack/files.c
View file @
8b9ad4d3
...
...
@@ -165,14 +165,14 @@ HRESULT WINAPI AddDelBackupEntryW(LPCWSTR lpcszFileList, LPCWSTR lpcszBackupDir,
/* FIXME: this is only for the local case, X:\ */
#define ROOT_LENGTH 3
UINT
CALLBACK
pQuietQueueCallback
(
PVOID
Context
,
UINT
Notification
,
UINT_PTR
Param1
,
UINT_PTR
Param2
)
static
UINT
CALLBACK
pQuietQueueCallback
(
PVOID
Context
,
UINT
Notification
,
UINT_PTR
Param1
,
UINT_PTR
Param2
)
{
return
1
;
}
UINT
CALLBACK
pQueueCallback
(
PVOID
Context
,
UINT
Notification
,
UINT_PTR
Param1
,
UINT_PTR
Param2
)
static
UINT
CALLBACK
pQueueCallback
(
PVOID
Context
,
UINT
Notification
,
UINT_PTR
Param1
,
UINT_PTR
Param2
)
{
/* only be verbose for error notifications */
if
(
!
Notification
||
...
...
dlls/advpack/install.c
View file @
8b9ad4d3
...
...
@@ -425,8 +425,8 @@ static HRESULT get_working_dir(ADVInfo *info, LPCWSTR inf_filename, LPCWSTR work
}
/* loads the INF file and performs checks on it */
HRESULT
install_init
(
LPCWSTR
inf_filename
,
LPCWSTR
install_sec
,
LPCWSTR
working_dir
,
DWORD
flags
,
ADVInfo
*
info
)
static
HRESULT
install_init
(
LPCWSTR
inf_filename
,
LPCWSTR
install_sec
,
LPCWSTR
working_dir
,
DWORD
flags
,
ADVInfo
*
info
)
{
DWORD
len
;
HRESULT
hr
;
...
...
@@ -500,7 +500,7 @@ HRESULT install_init(LPCWSTR inf_filename, LPCWSTR install_sec,
}
/* release the install instance information */
void
install_release
(
ADVInfo
*
info
)
static
void
install_release
(
ADVInfo
*
info
)
{
if
(
info
->
hinf
&&
info
->
hinf
!=
INVALID_HANDLE_VALUE
)
SetupCloseInfFile
(
info
->
hinf
);
...
...
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