summaryrefslogtreecommitdiffstats
path: root/src/include/edoors_door.h
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-06-10 11:42:13 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-06-10 11:42:13 +0200
commit783b3154cd7b4dbc3fea453dac5f7af09a011ef4 (patch)
tree6f53cf6ef2b7dd9553dd51f5cd3bb71a3beb727a /src/include/edoors_door.h
parentb99a632a158519295b8ccaa0afacdb60f2a1702e (diff)
downloadedoors-783b3154cd7b4dbc3fea453dac5f7af09a011ef4.zip
edoors-783b3154cd7b4dbc3fea453dac5f7af09a011ef4.tar.gz
rename Eiotas->Edoors
Diffstat (limited to 'src/include/edoors_door.h')
-rw-r--r--src/include/edoors_door.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/include/edoors_door.h b/src/include/edoors_door.h
new file mode 100644
index 0000000..0017e73
--- /dev/null
+++ b/src/include/edoors_door.h
@@ -0,0 +1,79 @@
+/* EDOORS
+ * Copyright (C) 2012 Jérémy Zurcher
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library;
+ * if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __EDOORS_DOOR_H__
+#define __EDOORS_DOOR_H__
+
+#include "edoors_iota.h"
+#include "edoors_room.h"
+#include "edoors_userbits.h"
+
+#include <eina_types.h>
+
+/**
+ * @typedef Edoors_Door
+ * Type for a basic Door.
+ */
+typedef struct _Edoors_Door Edoors_Door;
+
+/**
+ * @struct _Edoors_Door
+ * Struct for a basic Door.
+ */
+struct _Edoors_Door {
+ Edoors_Iota iota; /**< structural info */
+ Edoors_User_Bits user_bits; /**< user bits */
+};
+
+/**
+ * @defgroup Edoors_Door Edoors_Door
+ *
+ * A Edoors_Door is the main structure used to interact with user code.
+ * @ref Edoors_Particle sent to user code are, follower and sent releaseed
+ * through edoors_spin_release_particle if not cprrectly managed by user code.
+ *
+ * @{
+ */
+
+/**
+ * @brief Free allocated resources.
+ *
+ * @param door The @ref Edoors_Door to free.
+ *
+ * This function will free all it's user data using user_bits ... FIXME
+ */
+void edoors_door_free(Edoors_Door *door);
+
+/**
+ * @brief Allocate the resources.
+ *
+ * @param name The name of this door.
+ * @param parent The direct hierarchical parent @ref Edoors_Room.
+ * @param user_bits A Edoors_User_Bits initilized with user side pointers.
+ *
+ * @return the new allocated @ref Edoors_Door @c NULL on failure
+ *
+ * @see Edoors_User_Bits
+ */
+EAPI Edoors_Door* edoors_door_add(const char* name, const Edoors_Room *parent, Edoors_User_Bits *user_bits);
+
+/**
+ * @}
+ */
+
+#endif // __EDOORS_DOOR_H__