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
8d5f7fe1
Commit
8d5f7fe1
authored
Jul 26, 2010
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Constify some variables.
parent
27816c7c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
advapi32_misc.h
dlls/advapi32/advapi32_misc.h
+2
-2
security.c
dlls/advapi32/security.c
+2
-2
No files found.
dlls/advapi32/advapi32_misc.h
View file @
8d5f7fe1
...
...
@@ -24,7 +24,7 @@ const char * debugstr_sid(PSID sid);
BOOL
ADVAPI_IsLocalComputer
(
LPCWSTR
ServerName
);
BOOL
ADVAPI_GetComputerSid
(
PSID
sid
);
BOOL
lookup_local_wellknown_name
(
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
);
BOOL
lookup_local_user_name
(
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
);
BOOL
lookup_local_wellknown_name
(
const
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
);
BOOL
lookup_local_user_name
(
const
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
);
#endif
/* __WINE_ADVAPI32MISC_H */
dlls/advapi32/security.c
View file @
8d5f7fe1
...
...
@@ -2764,7 +2764,7 @@ static BOOL match_account( ULONG idx, const LSA_UNICODE_STRING *account )
/*
* Helper function for LookupAccountNameW
*/
BOOL
lookup_local_wellknown_name
(
LSA_UNICODE_STRING
*
account_and_domain
,
BOOL
lookup_local_wellknown_name
(
const
LSA_UNICODE_STRING
*
account_and_domain
,
PSID
Sid
,
LPDWORD
cbSid
,
LPWSTR
ReferencedDomainName
,
LPDWORD
cchReferencedDomainName
,
...
...
@@ -2827,7 +2827,7 @@ BOOL lookup_local_wellknown_name( LSA_UNICODE_STRING *account_and_domain,
return
ret
;
}
BOOL
lookup_local_user_name
(
LSA_UNICODE_STRING
*
account_and_domain
,
BOOL
lookup_local_user_name
(
const
LSA_UNICODE_STRING
*
account_and_domain
,
PSID
Sid
,
LPDWORD
cbSid
,
LPWSTR
ReferencedDomainName
,
LPDWORD
cchReferencedDomainName
,
...
...
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