mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:53:03 +00:00
[SRVSVC] Set and retrieve service bits and rename unknown functions
- Service bits are set by NetrServerSetServiceBits and can be retrieved by NetrServerGetInfo. - The real name of function 42 is NetrServerSetServiceBitsEx and the real name of function 47 is NetrDfsSetServerInfo.
This commit is contained in:
parent
bfcbda227f
commit
0a5ccac599
4 changed files with 44 additions and 16 deletions
|
@ -1388,10 +1388,16 @@ interface srvsvc
|
|||
[in] DWORD Level,
|
||||
[in, switch_is(Level)] LPTRANSPORT_INFO Buffer);
|
||||
|
||||
// This method not used on the wire
|
||||
void
|
||||
/* Function 42 - Not used on wire */
|
||||
NET_API_STATUS
|
||||
__stdcall
|
||||
Opnum42NotUsedOnWire(void);
|
||||
NetrServerSetServiceBitsEx(
|
||||
[in, string, unique] SRVSVC_HANDLE ServerName,
|
||||
[in, string, unique] WCHAR *EmulatedServer,
|
||||
[in, string, unique] WCHAR *Transport,
|
||||
[in] DWORD ServiceBitsOfInterest,
|
||||
[in] DWORD ServiceBits,
|
||||
[in] DWORD UpdateImmediately);
|
||||
|
||||
NET_API_STATUS
|
||||
__stdcall
|
||||
|
@ -1425,10 +1431,10 @@ interface srvsvc
|
|||
[in, string] WCHAR *Prefix,
|
||||
[in] unsigned long State);
|
||||
|
||||
// This method not used on the wire
|
||||
void
|
||||
/* Function 47 - Not used on wire */
|
||||
NET_API_STATUS
|
||||
__stdcall
|
||||
Opnum47NotUsedOnWire(void);
|
||||
NetrDfsSetServerInfo(void);
|
||||
|
||||
NET_API_STATUS
|
||||
__stdcall
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue