diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-29 14:49:35 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:46:45 +0100 |
commit | e1733d72441ec5aff6d48abf6dd41a91e459df01 (patch) | |
tree | a5bbfd5504d0ff08c10cd53b8baaad0002f29575 /source4/lib/events | |
parent | 1da2cfe03d956e5f209b049f931851b4afa1287c (diff) | |
download | samba-e1733d72441ec5aff6d48abf6dd41a91e459df01.tar.gz samba-e1733d72441ec5aff6d48abf6dd41a91e459df01.tar.bz2 samba-e1733d72441ec5aff6d48abf6dd41a91e459df01.zip |
r26194: Wrap the events subsystem in a separate file.
(This used to be commit cfb6bbdc31083308dbff29cf226a092c8a137c2a)
Diffstat (limited to 'source4/lib/events')
-rw-r--r-- | source4/lib/events/config.mk | 4 | ||||
-rw-r--r-- | source4/lib/events/events.i | 31 |
2 files changed, 35 insertions, 0 deletions
diff --git a/source4/lib/events/config.mk b/source4/lib/events/config.mk index 2e0a8a6028..7f4bfafb54 100644 --- a/source4/lib/events/config.mk +++ b/source4/lib/events/config.mk @@ -36,3 +36,7 @@ PUBLIC_HEADERS = events.h events_internal.h PUBLIC_DEPENDENCIES = LIBTALLOC # End SUBSYSTEM LIBEVENTS ############################## + +[PYTHON::swig_python] +SWIG_FILE = events.i +PRIVATE_DEPENDENCIES = LIBEVENTS diff --git a/source4/lib/events/events.i b/source4/lib/events/events.i new file mode 100644 index 0000000000..a89763a3d6 --- /dev/null +++ b/source4/lib/events/events.i @@ -0,0 +1,31 @@ +/* + Unix SMB/CIFS implementation. + Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +%module(package="samba.events") events; + +%import "../talloc/talloc.i"; + +%{ +#include "lib/events/events.h" +%} + +struct event_context *event_context_init(TALLOC_CTX *mem_ctx); + +%typemap(default) struct event_context * { + $1 = event_context_init(NULL); +} |