1*821b358bSJason King /* 2*821b358bSJason King * This file and its contents are supplied under the terms of the 3*821b358bSJason King * Common Development and Distribution License ("CDDL"), version 1.0. 4*821b358bSJason King * You may only use this file in accordance with the terms of version 5*821b358bSJason King * 1.0 of the CDDL. 6*821b358bSJason King * 7*821b358bSJason King * A full copy of the text of the CDDL should have accompanied this 8*821b358bSJason King * source. A copy of the CDDL is also available via the Internet at 9*821b358bSJason King * http://www.illumos.org/license/CDDL. 10*821b358bSJason King */ 11*821b358bSJason King 12*821b358bSJason King /* 13*821b358bSJason King * Copyright 2023 RackTop Systems, Inc. 14*821b358bSJason King */ 15*821b358bSJason King 16*821b358bSJason King #ifndef _SMBADM_H 17*821b358bSJason King #define _SMBADM_H 18*821b358bSJason King 19*821b358bSJason King /* 20*821b358bSJason King * Declarations private to the smbadm command 21*821b358bSJason King */ 22*821b358bSJason King 23*821b358bSJason King #ifdef __cplusplus 24*821b358bSJason King extern "C" { 25*821b358bSJason King #endif 26*821b358bSJason King 27*821b358bSJason King /* Commands in smbinfo.c */ 28*821b358bSJason King extern int cmd_list_sess(int, char **); 29*821b358bSJason King extern int cmd_list_trees(int, char **); 30*821b358bSJason King extern int cmd_list_ofiles(int, char **); 31*821b358bSJason King extern int cmd_close_sess(int, char **); 32*821b358bSJason King extern int cmd_close_ofile(int, char **); 33*821b358bSJason King 34*821b358bSJason King #ifdef __cplusplus 35*821b358bSJason King } 36*821b358bSJason King #endif 37*821b358bSJason King 38*821b358bSJason King #endif /* _SMBADM_H */ 39