- oops forgot includes
[oweals/gnunet.git] / src / include / gnunet_disk_lib.h
index 1e2ab8c19ccbd32f2f5dfec8a13dfbc8c92e3b86..51f58565542b96f5fb98439fd8071cac66fde3ac 100644 (file)
  */
 struct GNUNET_DISK_PipeHandle;
 
-
+/**
+ * Type of a handle.
+ */
 enum GNUNET_FILE_Type
 {
-  GNUNET_DISK_FILE, GNUNET_PIPE
+  /**
+   * Handle represents a file.
+   */ 
+  GNUNET_DISK_HANLDE_TYPE_FILE, 
+
+  /**
+   * Handle represents a pipe.
+   */
+  GNUNET_DISK_HANLDE_TYPE_PIPE
 };
 
 /**