Add ENABLE_COMPLEX_DEPS flag
[platform/upstream/libsolv.git] / src / pooltypes.h
index 08a1df4..bccdfc1 100644 (file)
@@ -7,25 +7,56 @@
 
 /*
  * pooltypes.h
- * 
+ *
  */
 
-#ifndef SATSOLVER_POOLTYPES_H
-#define SATSOLVER_POOLTYPES_H
+#ifndef LIBSOLV_POOLTYPES_H
+#define LIBSOLV_POOLTYPES_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* format version number for .solv files */
+#define SOLV_VERSION_0 0
+#define SOLV_VERSION_1 1
+#define SOLV_VERSION_2 2
+#define SOLV_VERSION_3 3
+#define SOLV_VERSION_4 4
+#define SOLV_VERSION_5 5
+#define SOLV_VERSION_6 6
+#define SOLV_VERSION_7 7
+#define SOLV_VERSION_8 8
+#define SOLV_VERSION_9 9
+
+#define SOLV_FLAG_PREFIX_POOL  4
+#define SOLV_FLAG_SIZE_BYTES   8
+#define SOLV_FLAG_USERDATA     16
+#define SOLV_FLAG_IDARRAYBLOCK 32
 
-/* version number for .solv files */
-#define SOLV_VERSION 0
+struct s_Stringpool;
+typedef struct s_Stringpool Stringpool;
 
-struct _Stringpool;
-typedef struct _Stringpool Stringpool;
+struct s_Pool;
+typedef struct s_Pool Pool;
 
-struct _Pool;
-typedef struct _Pool Pool;
+struct s_Repo;
+typedef struct s_Repo Repo;
 
-// identifier for string values
+struct s_Repodata;
+typedef struct s_Repodata Repodata;
+
+struct s_Solvable;
+typedef struct s_Solvable Solvable;
+
+/* identifier for string values */
 typedef int Id;                /* must be signed!, since negative Id is used in solver rules to denote negation */
 
-// offset value, e.g. used to 'point' into the stringspace
+/* offset value, e.g. used to 'point' into the stringspace */
 typedef unsigned int Offset;
 
-#endif /* SATSOLVER_POOLTYPES_H */
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* LIBSOLV_POOLTYPES_H */