mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
16 lines
473 B
C
16 lines
473 B
C
#include <popt.h>
|
|
|
|
void popt_common_callback(poptContext con,
|
|
enum poptCallbackReason reason,
|
|
const struct poptOption *opt,
|
|
const char *arg, const void *data);
|
|
|
|
extern struct poptOption popt_common_netapi_examples[];
|
|
|
|
#ifndef POPT_TABLEEND
|
|
#define POPT_TABLEEND { NULL, '\0', 0, 0, 0, NULL, NULL }
|
|
#endif
|
|
|
|
#define POPT_COMMON_LIBNETAPI_EXAMPLES { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_netapi_examples, 0, "Common samba netapi example options:", NULL },
|
|
|