From c9365ad7da478aaa90d55772b30c0a56c3c6a8fe Mon Sep 17 00:00:00 2001 From: titan Date: Wed, 9 Aug 2006 07:06:55 +0000 Subject: [PATCH] Fix the order of a typedef to satisfy g++ SVN revision: 24495 --- legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h b/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h index 5d85d0a3ef..b9f7e44019 100644 --- a/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h +++ b/legacy/ecore/src/lib/ecore_fb/Ecore_Fb.h @@ -47,7 +47,6 @@ extern "C" { typedef struct _Ecore_Fb_Input_Device Ecore_Fb_Input_Device; /* an input device handler */ /* device capabilities */ -typedef enum _Ecore_Fb_Input_Device_Cap Ecore_Fb_Input_Device_Cap; enum _Ecore_Fb_Input_Device_Cap { ECORE_FB_INPUT_DEVICE_CAP_NONE = 0x00000000, @@ -55,7 +54,7 @@ enum _Ecore_Fb_Input_Device_Cap ECORE_FB_INPUT_DEVICE_CAP_ABSOLUTE = 0x00000002, ECORE_FB_INPUT_DEVICE_CAP_KEYS_OR_BUTTONS = 0x00000004 }; - +typedef enum _Ecore_Fb_Input_Device_Cap Ecore_Fb_Input_Device_Cap; EAPI extern int ECORE_FB_EVENT_KEY_DOWN; /**< FB Key Down event */ EAPI extern int ECORE_FB_EVENT_KEY_UP; /**< FB Key Up event */