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
d161a8f6
Commit
d161a8f6
authored
Aug 09, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix definition of LookupPrivilegeNameW and declare it.
parent
13b6ce6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
security.c
dlls/advapi32/security.c
+1
-1
winbase.h
include/winbase.h
+3
-0
No files found.
dlls/advapi32/security.c
View file @
d161a8f6
...
...
@@ -944,7 +944,7 @@ LookupPrivilegeNameA( LPCSTR lpSystemName, PLUID lpLuid, LPSTR lpName, LPDWORD c
* LookupPrivilegeNameW [ADVAPI32.@]
*/
BOOL
WINAPI
LookupPrivilegeNameW
(
LPCWSTR
lpSystemName
,
PLUID
lpLuid
,
LPSTR
lpName
,
LPDWORD
cchName
)
LookupPrivilegeNameW
(
LPCWSTR
lpSystemName
,
PLUID
lpLuid
,
LP
W
STR
lpName
,
LPDWORD
cchName
)
{
FIXME
(
"%s %p %p %p
\n
"
,
debugstr_w
(
lpSystemName
),
lpLuid
,
lpName
,
cchName
);
return
FALSE
;
...
...
include/winbase.h
View file @
d161a8f6
...
...
@@ -1519,6 +1519,9 @@ BOOL WINAPI LookupAccountSidW(LPCWSTR,PSID,LPWSTR,LPDWORD,LPWSTR,LPDWORD,
BOOL
WINAPI
LocalFileTimeToFileTime
(
const
FILETIME
*
,
LPFILETIME
);
BOOL
WINAPI
LockFile
(
HANDLE
,
DWORD
,
DWORD
,
DWORD
,
DWORD
);
BOOL
WINAPI
LockFileEx
(
HANDLE
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
LPOVERLAPPED
);
BOOL
WINAPI
LookupPrivilegeNameA
(
LPCSTR
,
PLUID
,
LPSTR
,
LPDWORD
);
BOOL
WINAPI
LookupPrivilegeNameW
(
LPCWSTR
,
PLUID
,
LPWSTR
,
LPDWORD
);
#define LookupPrivilegeName WINELIB_NAME_AW(LookupPrivilegeName)
BOOL
WINAPI
LookupPrivilegeValueA
(
LPCSTR
,
LPCSTR
,
PLUID
);
BOOL
WINAPI
LookupPrivilegeValueW
(
LPCWSTR
,
LPCWSTR
,
PLUID
);
#define LookupPrivilegeValue WINELIB_NAME_AW(LookupPrivilegeValue)
...
...
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