1 
   2 #ifndef _NETSMB_SMB_NETSHAREENUM_H_
   3 #define _NETSMB_SMB_NETSHAREENUM_H_
   4 
   5 #pragma ident   "%Z%%M% %I%     %E% SMI"
   6 
   7 /* This is from Apple.  See ../smb/netshareenum.c */
   8 
   9 struct share_info {
  10         uint16_t        type;
  11         char            *netname;
  12         char            *remark;
  13 };
  14 typedef struct share_info share_info_t;
  15 
  16 int  smb_netshareenum(struct smb_ctx *, int *, int *, struct share_info **);
  17 
  18 #endif /* _NETSMB_SMB_NETSHAREENUM_H_ */