new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_xml / os_xml_writer.h
diff --git a/src/os_xml/os_xml_writer.h b/src/os_xml/os_xml_writer.h
deleted file mode 100755 (executable)
index ce413c6..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/* @(#) $Id: ./src/os_xml/os_xml_writer.h, 2011/09/08 dcid Exp $
- */
-
-/* Copyright (C) 2009 Trend Micro Inc.
- * All rights reserved.
- *
- * This program is a free software; you can redistribute it
- * and/or modify it under the terms of the GNU General Public
- * License (version 2) as published by the FSF - Free Software
- * Foundation
- */
-
-/* os_xml C Library.
- * Available at http://www.ossec.net/
- */
-
-
-#ifndef OS_XML_WRITER_H
-#define OS_XML_WRITER_H
-
-#ifndef XML_MAXSIZE
-   #define XML_MAXSIZE          2048
-#endif /* XML_MAXSIZE */
-
-#ifndef XML_VAR
-   #define XML_VAR              "xml_var"
-#endif /* XML_VAR */
-
-
-/* Error from writer */
-#define XMLW_ERROR              006
-#define XMLW_NOIN               007
-#define XMLW_NOOUT              010
-
-
-/* OS_WriteXML
- * Write an XML file, based on the input and values to change.
- */
-int OS_WriteXML(char *infile, char *outfile, char **nodes, char *attr,
-                char *oldval, char *newval,  int type);
-
-
-#endif
-
-/* EOF */