~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to source3/lib/netapi/examples/common.h

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <popt.h>
 
2
 
 
3
void popt_common_callback(poptContext con,
 
4
                         enum poptCallbackReason reason,
 
5
                         const struct poptOption *opt,
 
6
                         const char *arg, const void *data);
 
7
 
 
8
extern struct poptOption popt_common_netapi_examples[];
 
9
 
 
10
#define POPT_COMMON_LIBNETAPI_EXAMPLES { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_netapi_examples, 0, "Common samba netapi example options:", NULL },
 
11