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
afbe00a8
Commit
afbe00a8
authored
Sep 27, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Sep 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stubs for DsGetDcNameW and DsGetSiteNameW.
parent
180c814c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
2 deletions
+25
-2
ds.c
dlls/netapi32/ds.c
+17
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+4
-2
dsgetdc.h
include/dsgetdc.h
+4
-0
No files found.
dlls/netapi32/ds.c
View file @
afbe00a8
...
...
@@ -29,9 +29,26 @@
#include "ntsecapi.h"
#include "wine/debug.h"
#include "dsrole.h"
#include "dsgetdc.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ds
);
DWORD
WINAPI
DsGetDcNameW
(
LPCWSTR
ComputerName
,
LPCWSTR
AvoidDCName
,
GUID
*
DomainGuid
,
LPCWSTR
SiteName
,
ULONG
Flags
,
PDOMAIN_CONTROLLER_INFOW
*
DomainControllerInfo
)
{
FIXME
(
"(%s, %s, %s, %s, %08lx, %p): stub
\n
"
,
debugstr_w
(
ComputerName
),
debugstr_w
(
AvoidDCName
),
debugstr_guid
(
DomainGuid
),
debugstr_w
(
SiteName
),
Flags
,
DomainControllerInfo
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
DWORD
WINAPI
DsGetSiteNameW
(
LPCWSTR
ComputerName
,
LPWSTR
*
SiteName
)
{
FIXME
(
"(%s, %p): stub
\n
"
,
debugstr_w
(
ComputerName
),
SiteName
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/************************************************************
* DsRoleFreeMemory (NETAPI32.@)
*
...
...
dlls/netapi32/netapi32.spec
View file @
afbe00a8
...
...
@@ -3,12 +3,14 @@
@ stub DsDeregisterDnsHostRecords
@ stub DsEnumerateDomainTrusts
@ stub DsGetDcClose
@ stub DsGetDcName
@ stub DsGetDcNameA # (str str ptr str long ptr)
@ stdcall DsGetDcNameW(wstr wstr ptr wstr long ptr)
@ stub DsGetDcNext
@ stub DsGetDcOpen
@ stub DsGetDcSiteCoverage
@ stub DsGetForestTrustInformationW
@ stub DsGetSiteName
@ stub DsGetSiteNameA # (str str)
@ stdcall DsGetSiteNameW(wstr wstr)
@ stub DsMergeForestTrustInformationW
@ stdcall DsRoleFreeMemory(ptr)
@ stdcall DsRoleGetPrimaryDomainInformation(wstr long ptr)
...
...
include/dsgetdc.h
View file @
afbe00a8
...
...
@@ -92,6 +92,10 @@ DWORD WINAPI DsGetDcNameA(LPCSTR,LPCSTR,GUID*,LPCSTR,ULONG,PDOMAIN_CONTROLLER_IN
DWORD
WINAPI
DsGetDcNameW
(
LPCWSTR
,
LPCWSTR
,
GUID
*
,
LPCWSTR
,
ULONG
,
PDOMAIN_CONTROLLER_INFOW
*
);
#define DsGetDcName WINELIB_NAME_AW(DsGetDcName)
DWORD
WINAPI
DsGetSiteNameA
(
LPCSTR
ComputerName
,
LPSTR
*
SiteName
);
DWORD
WINAPI
DsGetSiteNameW
(
LPCWSTR
ComputerName
,
LPWSTR
*
SiteName
);
#define DsGetSiteName WINELIB_NAME_AW(DsGetSiteName)
#ifdef __cplusplus
}
#endif
...
...
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