Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a0db724a
Commit
a0db724a
authored
Oct 05, 2006
by
Paul Chitescu
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi: Stub for DsGetDcNameA.
parent
906ca705
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
ds.c
dlls/netapi32/ds.c
+10
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
No files found.
dlls/netapi32/ds.c
View file @
a0db724a
...
...
@@ -43,6 +43,16 @@ DWORD WINAPI DsGetDcNameW(LPCWSTR ComputerName, LPCWSTR AvoidDCName,
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
DWORD
WINAPI
DsGetDcNameA
(
LPCSTR
ComputerName
,
LPCSTR
AvoidDCName
,
GUID
*
DomainGuid
,
LPCSTR
SiteName
,
ULONG
Flags
,
PDOMAIN_CONTROLLER_INFOA
*
DomainControllerInfo
)
{
FIXME
(
"(%s, %s, %s, %s, %08lx, %p): stub
\n
"
,
debugstr_a
(
ComputerName
),
debugstr_a
(
AvoidDCName
),
debugstr_guid
(
DomainGuid
),
debugstr_a
(
SiteName
),
Flags
,
DomainControllerInfo
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
DWORD
WINAPI
DsGetSiteNameW
(
LPCWSTR
ComputerName
,
LPWSTR
*
SiteName
)
{
FIXME
(
"(%s, %p): stub
\n
"
,
debugstr_w
(
ComputerName
),
SiteName
);
...
...
dlls/netapi32/netapi32.spec
View file @
a0db724a
...
...
@@ -3,7 +3,7 @@
@ stub DsDeregisterDnsHostRecords
@ stub DsEnumerateDomainTrusts
@ stub DsGetDcClose
@ st
ub DsGetDcNameA #
(str str ptr str long ptr)
@ st
dcall DsGetDcNameA
(str str ptr str long ptr)
@ stdcall DsGetDcNameW(wstr wstr ptr wstr long ptr)
@ stub DsGetDcNext
@ stub DsGetDcOpen
...
...
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