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
1ca4ddbd
Commit
1ca4ddbd
authored
Feb 03, 2007
by
Bang Jun-Young
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Constify the 3rd argument of RebootCheckOnInstall[AW].
parent
00b29dfa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
advpack.c
dlls/advpack/advpack.c
+2
-2
advpub.h
include/advpub.h
+2
-2
No files found.
dlls/advpack/advpack.c
View file @
1ca4ddbd
...
...
@@ -376,7 +376,7 @@ HRESULT WINAPI OpenINFEngineW(LPCWSTR pszInfFilename, LPCWSTR pszInstallSection,
* See RebootCheckOnInstallW.
*/
HRESULT
WINAPI
RebootCheckOnInstallA
(
HWND
hWnd
,
LPCSTR
pszINF
,
LPSTR
pszSec
,
DWORD
dwReserved
)
LP
C
STR
pszSec
,
DWORD
dwReserved
)
{
UNICODE_STRING
infW
,
secW
;
HRESULT
res
;
...
...
@@ -422,7 +422,7 @@ HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF,
* Unimplemented.
*/
HRESULT
WINAPI
RebootCheckOnInstallW
(
HWND
hWnd
,
LPCWSTR
pszINF
,
LPWSTR
pszSec
,
DWORD
dwReserved
)
LP
C
WSTR
pszSec
,
DWORD
dwReserved
)
{
FIXME
(
"(%p, %s, %s, %d): stub
\n
"
,
hWnd
,
debugstr_w
(
pszINF
),
debugstr_w
(
pszSec
),
dwReserved
);
...
...
include/advpub.h
View file @
1ca4ddbd
...
...
@@ -223,8 +223,8 @@ HRESULT WINAPI OpenINFEngineA(LPCSTR pszInfFilename, LPCSTR pszInstallSection,
HRESULT
WINAPI
OpenINFEngineW
(
LPCWSTR
pszInfFilename
,
LPCWSTR
pszInstallSection
,
DWORD
dwFlags
,
HINF
*
phInf
,
PVOID
pvReserved
);
#define OpenINFEngine WINELIB_NAME_AW(OpenINFEngine)
HRESULT
WINAPI
RebootCheckOnInstallA
(
HWND
hWnd
,
LPCSTR
pszINF
,
LPSTR
pszSec
,
DWORD
dwReserved
);
HRESULT
WINAPI
RebootCheckOnInstallW
(
HWND
hWnd
,
LPCWSTR
pszINF
,
LPWSTR
pszSec
,
DWORD
dwReserved
);
HRESULT
WINAPI
RebootCheckOnInstallA
(
HWND
hWnd
,
LPCSTR
pszINF
,
LP
C
STR
pszSec
,
DWORD
dwReserved
);
HRESULT
WINAPI
RebootCheckOnInstallW
(
HWND
hWnd
,
LPCWSTR
pszINF
,
LP
C
WSTR
pszSec
,
DWORD
dwReserved
);
#define RebootCheckOnInstall WINELIB_NAME_AW(RebootCheckOnInstall)
HRESULT
WINAPI
RegInstallA
(
HMODULE
hm
,
LPCSTR
pszSection
,
const
STRTABLEA
*
pstTable
);
HRESULT
WINAPI
RegInstallW
(
HMODULE
hm
,
LPCWSTR
pszSection
,
const
STRTABLEW
*
pstTable
);
...
...
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