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
d31bb3f0
Commit
d31bb3f0
authored
Apr 11, 2009
by
Ge van Geldorp
Committed by
Alexandre Julliard
Apr 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Implement more GetUserNameEx() formats.
parent
66430491
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
secur32.c
dlls/secur32/secur32.c
+2
-8
No files found.
dlls/secur32/secur32.c
View file @
d31bb3f0
...
...
@@ -1097,12 +1097,6 @@ BOOLEAN WINAPI GetUserNameExW(
DWORD
len
;
TRACE
(
"(%d %p %p)
\n
"
,
NameFormat
,
lpNameBuffer
,
nSize
);
if
(
NameFormat
==
NameUnknown
)
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
switch
(
NameFormat
)
{
case
NameSamCompatible
:
...
...
@@ -1135,6 +1129,7 @@ BOOLEAN WINAPI GetUserNameExW(
status
=
FALSE
;
}
break
;
case
NameUnknown
:
case
NameFullyQualifiedDN
:
case
NameDisplay
:
case
NameUniqueId
:
...
...
@@ -1143,8 +1138,7 @@ BOOLEAN WINAPI GetUserNameExW(
case
NameCanonicalEx
:
case
NameServicePrincipal
:
case
NameDnsDomain
:
FIXME
(
"NameFormat %d not implemented
\n
"
,
NameFormat
);
SetLastError
(
ERROR_CANT_ACCESS_DOMAIN_INFO
);
SetLastError
(
ERROR_NONE_MAPPED
);
status
=
FALSE
;
break
;
default:
...
...
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