diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-10-30 06:46:01 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-10-30 06:46:01 +0000 |
commit | b786afe1aee98d974969b927d98bc040436520b1 (patch) | |
tree | edf56e227966c61a6eeedcbd0610a9a1eb68fd76 /examples/sam/README | |
parent | 4de8710e4b749d54166b477471425d881db65e73 (diff) | |
download | samba-b786afe1aee98d974969b927d98bc040436520b1.tar.gz samba-b786afe1aee98d974969b927d98bc040436520b1.tar.bz2 samba-b786afe1aee98d974969b927d98bc040436520b1.zip |
Remove SAM files - they belong in HEAD
(This used to be commit fc77e68b2bb199e507804baaa46a77cfa4862668)
Diffstat (limited to 'examples/sam/README')
-rw-r--r-- | examples/sam/README | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/sam/README b/examples/sam/README deleted file mode 100644 index 9e9fbb26db..0000000000 --- a/examples/sam/README +++ /dev/null @@ -1,29 +0,0 @@ -README for Samba SAM Database examples -==================================================== -26-08-2002 Stefan (metze) Metzmacher <metze@metzemix.de> - -Every module MUST have a sam_version() function. - -this is defined in include/sam.h: -#define SAM_MODULE_VERSIONING_MAGIC \ -int sam_version(void)\ -{\ - return SAM_INTERFACE_VERSION;\ -} - -You MUST add this line inside a module: -SAM_MODULE_VERSIONING_MAGIC - - -The sam_skel.c file in this directory contains a very basic example of -a SAM plugin. It just prints the name of the function that is executed using -DEBUG. Maybe it's nice to include some of the arguments to the function in the -future too.. - -New SAM plugins should go into the samba lib directory, (/usr/lib/samba/ -for most distributions) and should be prefixed with 'sam_' and should go into the -subdir sam/. The SAM subsystem will search in /usr/lib/samba/sam and fall back to -/usr/lib/samba/ . -An example path would be: -/usr/lib/samba/sam/sam_skel.so - |