summaryrefslogtreecommitdiff
path: root/source3/include/eventlog.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-05-06 11:42:52 +0200
committerGünther Deschner <gd@samba.org>2010-05-06 13:41:51 +0200
commitd2d7174394c1283a3ae8e313f9a6d97df8708334 (patch)
tree430ed97dd05c1244aab7dcf6346a5f14d6ef18c0 /source3/include/eventlog.h
parent0dfe1b9b13d9caec4ebda37a792e7eaa0b9c7200 (diff)
downloadsamba-d2d7174394c1283a3ae8e313f9a6d97df8708334.tar.gz
samba-d2d7174394c1283a3ae8e313f9a6d97df8708334.tar.bz2
samba-d2d7174394c1283a3ae8e313f9a6d97df8708334.zip
s3-eventlog: move all eventlog headers to lib/eventlog and only include where required.
Guenther
Diffstat (limited to 'source3/include/eventlog.h')
-rw-r--r--source3/include/eventlog.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/source3/include/eventlog.h b/source3/include/eventlog.h
deleted file mode 100644
index 16affe3313..0000000000
--- a/source3/include/eventlog.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Unix SMB/CIFS implementation.
- * RPC Pipe client / server routines
- * Copyright (C) Marcin Krzysztof Porwit 2005.
- *
- * 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/>.
- */
-
-/* Defines for TDB keys */
-#define EVT_OLDEST_ENTRY "INFO/oldest_entry"
-#define EVT_NEXT_RECORD "INFO/next_record"
-#define EVT_VERSION "INFO/version"
-#define EVT_MAXSIZE "INFO/maxsize"
-#define EVT_RETENTION "INFO/retention"
-
-#define ELOG_APPL "Application"
-#define ELOG_SYS "System"
-#define ELOG_SEC "Security"
-
-typedef struct elog_tdb {
- struct elog_tdb *prev, *next;
- char *name;
- TDB_CONTEXT *tdb;
- int ref_count;
-} ELOG_TDB;
-
-#define ELOG_TDB_CTX(x) ((x)->tdb)
-
-
-#define EVENTLOG_DATABASE_VERSION_V1 1