mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:35:40 +00:00
[WIN32SS] Fix const-ness of registry helper functions (#6525)
Improve code quality. JIRA issue: CORE-19360 - Fix const-ness of the arguments of win32k registry helper functions. - Compact UserIsIMMEnabled function.
This commit is contained in:
parent
febb589e00
commit
3768f0893d
3 changed files with 9 additions and 12 deletions
|
@ -46,19 +46,19 @@ RegQueryValue(
|
|||
|
||||
VOID
|
||||
NTAPI
|
||||
RegWriteSZ(HKEY hkey, PWSTR pwszValue, PWSTR pwszData);
|
||||
RegWriteSZ(HKEY hkey, PCWSTR pwszValue, PWSTR pwszData);
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
RegWriteDWORD(HKEY hkey, PWSTR pwszValue, DWORD dwData);
|
||||
RegWriteDWORD(HKEY hkey, PCWSTR pwszValue, DWORD dwData);
|
||||
|
||||
BOOL
|
||||
NTAPI
|
||||
RegReadDWORD(HKEY hkey, PWSTR pwszValue, PDWORD pdwData);
|
||||
RegReadDWORD(HKEY hkey, PCWSTR pwszValue, PDWORD pdwData);
|
||||
|
||||
DWORD
|
||||
NTAPI
|
||||
RegGetSectionDWORD(LPCWSTR pszSection, LPWSTR pszValue, DWORD dwDefault);
|
||||
RegGetSectionDWORD(LPCWSTR pszSection, PCWSTR pszValue, DWORD dwDefault);
|
||||
|
||||
VOID
|
||||
FASTCALL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue