mpr: Constify some variables.
This commit is contained in:
parent
7984532fe2
commit
0ad8eaa27a
|
@ -50,7 +50,7 @@ static inline CHAR ctox( CHAR x )
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static LPSTR MPR_GetValueName( LPSTR pbResource, WORD cbResource, BYTE nType )
|
static LPSTR MPR_GetValueName( LPCSTR pbResource, WORD cbResource, BYTE nType )
|
||||||
{
|
{
|
||||||
LPSTR name;
|
LPSTR name;
|
||||||
DWORD i;
|
DWORD i;
|
||||||
|
|
|
@ -449,7 +449,7 @@ static PWNetEnumerator _createContextEnumerator(DWORD dwScope, DWORD dwType,
|
||||||
* failure.
|
* failure.
|
||||||
*/
|
*/
|
||||||
static DWORD _thunkNetResourceArrayWToA(const NETRESOURCEW *lpNetArrayIn,
|
static DWORD _thunkNetResourceArrayWToA(const NETRESOURCEW *lpNetArrayIn,
|
||||||
LPDWORD lpcCount, LPVOID lpBuffer, LPDWORD lpBufferSize)
|
const DWORD *lpcCount, LPVOID lpBuffer, const DWORD *lpBufferSize)
|
||||||
{
|
{
|
||||||
DWORD i, numToThunk, totalBytes, ret;
|
DWORD i, numToThunk, totalBytes, ret;
|
||||||
LPSTR strNext;
|
LPSTR strNext;
|
||||||
|
@ -534,7 +534,7 @@ static DWORD _thunkNetResourceArrayWToA(const NETRESOURCEW *lpNetArrayIn,
|
||||||
* failure.
|
* failure.
|
||||||
*/
|
*/
|
||||||
static DWORD _thunkNetResourceArrayAToW(const NETRESOURCEA *lpNetArrayIn,
|
static DWORD _thunkNetResourceArrayAToW(const NETRESOURCEA *lpNetArrayIn,
|
||||||
LPDWORD lpcCount, LPVOID lpBuffer, LPDWORD lpBufferSize)
|
const DWORD *lpcCount, LPVOID lpBuffer, const DWORD *lpBufferSize)
|
||||||
{
|
{
|
||||||
DWORD i, numToThunk, totalBytes, ret;
|
DWORD i, numToThunk, totalBytes, ret;
|
||||||
LPWSTR strNext;
|
LPWSTR strNext;
|
||||||
|
@ -876,7 +876,7 @@ static DWORD _countProviderBytesW(PWNetProvider provider)
|
||||||
}
|
}
|
||||||
|
|
||||||
static DWORD _enumerateProvidersW(PWNetEnumerator enumerator, LPDWORD lpcCount,
|
static DWORD _enumerateProvidersW(PWNetEnumerator enumerator, LPDWORD lpcCount,
|
||||||
LPVOID lpBuffer, LPDWORD lpBufferSize)
|
LPVOID lpBuffer, const DWORD *lpBufferSize)
|
||||||
{
|
{
|
||||||
DWORD ret;
|
DWORD ret;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue