1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

s3-netapi: add NetShutdownInit and NetShutdownAbort.

I know, they don't exist as such calls on windows but having them in
libnetapi.so would be very handy.

Guenther
This commit is contained in:
Günther Deschner 2009-05-13 16:16:33 +02:00
parent 0a5d99ae7d
commit e272acf484

View File

@ -1849,4 +1849,25 @@ interface libnetapi
[out] uint32 *total_entries, [out] uint32 *total_entries,
[in,out] uint32 *resume_handle [in,out] uint32 *resume_handle
); );
/*******************************************/
/* NetShutdownInit */
/*******************************************/
[nopush,nopull] NET_API_STATUS NetShutdownInit(
[in] string server_name,
[in] string message,
[in] uint32 timeout,
[in] uint8 force_apps,
[in] uint8 do_reboot
);
/*******************************************/
/* NetShutdownAbort */
/*******************************************/
[nopush,nopull] NET_API_STATUS NetShutdownAbort(
[in] string server_name
);
} }