Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : proto

Dir     : e17/proto/entropy/src


Modified Files:
        entropy_gui.c 


Log Message:
* Rename dialog work


===================================================================
RCS file: /cvsroot/enlightenment/e17/proto/entropy/src/entropy_gui.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- entropy_gui.c       30 Dec 2005 06:47:30 -0000      1.2
+++ entropy_gui.c       16 Jan 2006 11:17:30 -0000      1.3
@@ -1,4 +1,5 @@
-#include <entropy.h>
+#include "entropy.h"
+#include "entropy_gui.h"
 
 entropy_gui_component_instance* entropy_gui_component_instance_new() {
        entropy_gui_component_instance* inst = 
entropy_malloc(sizeof(entropy_gui_component_instance));
@@ -12,3 +13,31 @@
 void entropy_gui_component_instance_enable(entropy_gui_component_instance* 
instance) {
        instance->active = COMPONENT_ACTIVE;
 }
+
+
+/*Miscellaneous structures*/
+
+
+entropy_file_gui_component* entropy_file_gui_component_new() 
+{
+       entropy_file_gui_component* comp = 
entropy_malloc(sizeof(entropy_file_gui_component));
+       return comp;
+}
+
+ 
+entropy_file_gui_component* 
entropy_file_gui_component_new_with_data(entropy_generic_file* file, 
+                       entropy_gui_component_instance* instance)
+{
+       entropy_file_gui_component* comp = 
entropy_malloc(sizeof(entropy_file_gui_component));
+
+       comp->file = file;
+       comp->instance = instance;
+       
+       return comp;
+       
+}
+
+void entropy_file_gui_component_destroy(entropy_file_gui_component* comp)
+{
+       free(comp);
+}




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to