advpack: Constify the 3rd argument of RebootCheckOnInstall[AW].
This commit is contained in:
parent
00b29dfa79
commit
1ca4ddbd09
|
@ -376,7 +376,7 @@ HRESULT WINAPI OpenINFEngineW(LPCWSTR pszInfFilename, LPCWSTR pszInstallSection,
|
||||||
* See RebootCheckOnInstallW.
|
* See RebootCheckOnInstallW.
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF,
|
HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF,
|
||||||
LPSTR pszSec, DWORD dwReserved)
|
LPCSTR pszSec, DWORD dwReserved)
|
||||||
{
|
{
|
||||||
UNICODE_STRING infW, secW;
|
UNICODE_STRING infW, secW;
|
||||||
HRESULT res;
|
HRESULT res;
|
||||||
|
@ -422,7 +422,7 @@ HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF,
|
||||||
* Unimplemented.
|
* Unimplemented.
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI RebootCheckOnInstallW(HWND hWnd, LPCWSTR pszINF,
|
HRESULT WINAPI RebootCheckOnInstallW(HWND hWnd, LPCWSTR pszINF,
|
||||||
LPWSTR pszSec, DWORD dwReserved)
|
LPCWSTR pszSec, DWORD dwReserved)
|
||||||
{
|
{
|
||||||
FIXME("(%p, %s, %s, %d): stub\n", hWnd, debugstr_w(pszINF),
|
FIXME("(%p, %s, %s, %d): stub\n", hWnd, debugstr_w(pszINF),
|
||||||
debugstr_w(pszSec), dwReserved);
|
debugstr_w(pszSec), dwReserved);
|
||||||
|
|
|
@ -223,8 +223,8 @@ HRESULT WINAPI OpenINFEngineA(LPCSTR pszInfFilename, LPCSTR pszInstallSection,
|
||||||
HRESULT WINAPI OpenINFEngineW(LPCWSTR pszInfFilename, LPCWSTR pszInstallSection,
|
HRESULT WINAPI OpenINFEngineW(LPCWSTR pszInfFilename, LPCWSTR pszInstallSection,
|
||||||
DWORD dwFlags, HINF *phInf, PVOID pvReserved);
|
DWORD dwFlags, HINF *phInf, PVOID pvReserved);
|
||||||
#define OpenINFEngine WINELIB_NAME_AW(OpenINFEngine)
|
#define OpenINFEngine WINELIB_NAME_AW(OpenINFEngine)
|
||||||
HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF, LPSTR pszSec, DWORD dwReserved);
|
HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF, LPCSTR pszSec, DWORD dwReserved);
|
||||||
HRESULT WINAPI RebootCheckOnInstallW(HWND hWnd, LPCWSTR pszINF, LPWSTR pszSec, DWORD dwReserved);
|
HRESULT WINAPI RebootCheckOnInstallW(HWND hWnd, LPCWSTR pszINF, LPCWSTR pszSec, DWORD dwReserved);
|
||||||
#define RebootCheckOnInstall WINELIB_NAME_AW(RebootCheckOnInstall)
|
#define RebootCheckOnInstall WINELIB_NAME_AW(RebootCheckOnInstall)
|
||||||
HRESULT WINAPI RegInstallA(HMODULE hm, LPCSTR pszSection, const STRTABLEA* pstTable);
|
HRESULT WINAPI RegInstallA(HMODULE hm, LPCSTR pszSection, const STRTABLEA* pstTable);
|
||||||
HRESULT WINAPI RegInstallW(HMODULE hm, LPCWSTR pszSection, const STRTABLEW* pstTable);
|
HRESULT WINAPI RegInstallW(HMODULE hm, LPCWSTR pszSection, const STRTABLEW* pstTable);
|
||||||
|
|
Loading…
Reference in New Issue