1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

netapi: add c++ guard.

Guenther
(This used to be commit c9e38fef64)
This commit is contained in:
Günther Deschner 2008-08-12 19:38:22 +02:00
parent cde6c647af
commit 93d2a982fc

View File

@ -20,6 +20,10 @@
#ifndef __LIB_NETAPI_H__
#define __LIB_NETAPI_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/****************************************************************
NET_API_STATUS
****************************************************************/
@ -1200,5 +1204,8 @@ NET_API_STATUS NetLocalGroupSetMembers(const char * server_name /* [in] */,
NET_API_STATUS NetRemoteTOD(const char * server_name /* [in] */,
uint8_t **buf /* [out] [ref] */);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
#endif /* __LIB_NETAPI_H__ */