These files are for code to handle execution and .order files.

SVN revision: 29048
This commit is contained in:
Sebastian Dransfeld 2007-03-24 20:12:16 +00:00
parent c7872bf9f7
commit a1ba10c828
6 changed files with 49 additions and 1 deletions

View File

@ -188,7 +188,9 @@ e_int_config_desk.h \
e_int_config_clientlist.h \ e_int_config_clientlist.h \
e_fm_prop.h \ e_fm_prop.h \
e_int_config_mouse.h \ e_int_config_mouse.h \
e_mouse.h e_mouse.h \
e_order.h \
e_exec.h
enlightenment_src = \ enlightenment_src = \
e_user.c \ e_user.c \
@ -352,6 +354,8 @@ e_fm_prop.c \
e_int_config_clientlist.c \ e_int_config_clientlist.c \
e_int_config_mouse.c \ e_int_config_mouse.c \
e_mouse.c \ e_mouse.c \
e_order.c \
e_exec.c \
$(ENLIGHTENMENTHEADERS) $(ENLIGHTENMENTHEADERS)
enlightenment_SOURCES = \ enlightenment_SOURCES = \

4
src/bin/e_exec.c Normal file
View File

@ -0,0 +1,4 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"

11
src/bin/e_exec.h Normal file
View File

@ -0,0 +1,11 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
#else
#ifndef E_EXEC_H
#define E_EXEC_H
#endif
#endif

View File

@ -164,3 +164,5 @@
#include "e_fm_prop.h" #include "e_fm_prop.h"
#include "e_mouse.h" #include "e_mouse.h"
#include "e_int_config_mouse.h" #include "e_int_config_mouse.h"
#include "e_order.h"
#include "e_exec.h"

4
src/bin/e_order.c Normal file
View File

@ -0,0 +1,4 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"

23
src/bin/e_order.h Normal file
View File

@ -0,0 +1,23 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
typedef struct _E_Order E_Order;
#else
#ifndef E_ORDER_H
#define E_ORDER_H
#define E_ORDER_TYPE 0xE0b01020
struct _E_Order
{
E_Object e_obj_inherit;
Evas_List *subapps; /* A list of Efreet_Desktop files this .order contains */
Ecore_File_Monitor *monitor; /* Check for changes int the .order file */
};
#endif
#endif